projects
/
karo-tx-uboot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
862445c
)
karo: tx6ul: disable PMIC init
author
Lothar Waßmann
<LW@KARO-electronics.de>
Tue, 20 Oct 2015 11:35:50 +0000
(13:35 +0200)
committer
Lothar Waßmann
<LW@KARO-electronics.de>
Tue, 20 Oct 2015 11:35:50 +0000
(13:35 +0200)
The I2C-GPIO driver requires configuration via DTB which is not
currently supported for Ka-Ro modules. So, disable the PMIC access for
now.
board/karo/tx6/tx6ul.c
patch
|
blob
|
history
diff --git
a/board/karo/tx6/tx6ul.c
b/board/karo/tx6/tx6ul.c
index
045605d
..
a433c14
100644
(file)
--- a/
board/karo/tx6/tx6ul.c
+++ b/
board/karo/tx6/tx6ul.c
@@
-428,12
+428,13
@@
int board_init(void)
#endif
return 0;
}
-
+#if 0
ret = tx6_pmic_init(pmic_addr);
if (ret) {
printf("Failed to setup PMIC voltages: %d\n", ret);
-
//
hang();
+
hang();
}
+#endif
return 0;
}