From: Lothar Waßmann Date: Tue, 20 Oct 2015 11:35:50 +0000 (+0200) Subject: karo: tx6ul: disable PMIC init X-Git-Tag: KARO-TX6UL-2015-10-23~7 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=18aa2036c35ef151d0b358db14dad41715e1ecfe karo: tx6ul: disable PMIC init The I2C-GPIO driver requires configuration via DTB which is not currently supported for Ka-Ro modules. So, disable the PMIC access for now. --- diff --git a/board/karo/tx6/tx6ul.c b/board/karo/tx6/tx6ul.c index 045605d94e..a433c14343 100644 --- 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; }