misc:pmic:samsung Enable PMIC driver at GONI target
[platform/kernel/u-boot.git] / board / samsung / goni / goni.c
index e24cd29..e191bfb 100644 (file)
@@ -25,6 +25,7 @@
 #include <common.h>
 #include <asm/arch/gpio.h>
 #include <asm/arch/mmc.h>
+#include <pmic.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -38,6 +39,9 @@ int board_init(void)
        gd->bd->bi_arch_number = MACH_TYPE_GONI;
        gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
 
+#if defined(CONFIG_PMIC)
+       pmic_init();
+#endif
        return 0;
 }