ramips: avoid invalid pointer dereference in pinmux code
authorGabor Juhos <juhosg@openwrt.org>
Mon, 8 Apr 2013 08:24:50 +0000 (08:24 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Mon, 8 Apr 2013 08:24:50 +0000 (08:24 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 36269

target/linux/ramips/patches-3.8/0125-MIPS-ralink-process-PCI-pinmux-group.patch

index 08cd2428f77893e63f9adf52910f60ee064ca9c3..d5c037e2e3f96d23f1c830543b18180c3bc490ff 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);