]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/samsung/universal_c210/universal.c
universal_c210: check the NULL pointer when get the PMIC
[karo-tx-uboot.git] / board / samsung / universal_c210 / universal.c
index 48697982839b896408f41e2db4e30c550d326f37..e742707f79659dca95b19fb4b6b91f27f093e0e8 100644 (file)
@@ -343,6 +343,9 @@ static void init_pmic_lcd(void)
 
        struct pmic *p = pmic_get("MAX8998_PMIC");
 
+       if (!p)
+               return;
+
        if (pmic_probe(p))
                return;
 
@@ -434,6 +437,9 @@ static void lcd_power_on(void)
 {
        struct pmic *p = pmic_get("MAX8998_PMIC");
 
+       if (!p)
+               return;
+
        if (pmic_probe(p))
                return;