diff options
author | Fabio Estevam <festevam@gmail.com> | 2019-12-10 06:33:00 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-01-08 10:51:56 +0100 |
commit | 279d0ab352f3d8cf36874d383d528ab2b318e76d (patch) | |
tree | 8d3c7133ab40b26df722364ad6f9a696e8b5555d /board | |
parent | 21f77b77af3f7cadfce790e099e8315d9eedd14c (diff) | |
download | u-boot-279d0ab352f3d8cf36874d383d528ab2b318e76d.tar.gz u-boot-279d0ab352f3d8cf36874d383d528ab2b318e76d.tar.bz2 u-boot-279d0ab352f3d8cf36874d383d528ab2b318e76d.zip |
wandboard: Remove repeated PMIC string
After the conversion to DM_PMIC the following output is seen:
PMIC: PMIC: PFUZE100 ID=0x10
Remove the unnecessary PMIC string from the board file to
avoid the repetead string.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/wandboard/wandboard.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index b2f961a7f0..f4534dd3dc 100644 --- a/board/wandboard/wandboard.c +++ b/board/wandboard/wandboard.c @@ -361,8 +361,6 @@ int power_init_board(void) struct udevice *dev; int reg, ret; - puts("PMIC: "); - ret = pmic_get("pfuze100@8", &dev); if (ret < 0) { printf("pmic_get() ret %d\n", ret); |