ramips: avoid invalid pointer dereference in pinmux code
[15.05/openwrt.git] / target / linux / ramips / patches-3.8 / 0125-MIPS-ralink-process-PCI-pinmux-group.patch
index 08cd242..d5c037e 100644 (file)
@@ -19,11 +19,14 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
        u32 mode = 0;
  
        np = of_find_compatible_node(NULL, NULL, "ralink,rt3050-sysc");
-@@ -76,5 +76,17 @@ void ralink_pinmux(void)
+@@ -76,5 +76,20 @@ void ralink_pinmux(void)
        if (wdt && *wdt && rt_pinmux.wdt_reset)
                rt_pinmux.wdt_reset();
  
-+      of_property_read_string(np, "ralink,pcimux", &pci);
++      pci = NULL;
++      if (rt_pinmux.pci)
++              of_property_read_string(np, "ralink,pcimux", &pci);
++
 +      if (pci) {
 +              int m = ralink_mux_mask(pci, rt_pinmux.pci);
 +              mode &= ~(rt_pinmux.pci_mask << rt_pinmux.pci_shift);