diff options
| -rw-r--r-- | arch/powerpc/kernel/prom_init.c | 2 | ||||
| -rw-r--r-- | arch/ppc64/kernel/prom_init.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index c758b6624d7b..0d91961f9433 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
| @@ -1872,7 +1872,7 @@ static void __init fixup_device_tree(void) | |||
| 1872 | if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev)) | 1872 | if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev)) |
| 1873 | == PROM_ERROR) | 1873 | == PROM_ERROR) |
| 1874 | return; | 1874 | return; |
| 1875 | if (u3_rev != 0x35 && u3_rev != 0x37) | 1875 | if (u3_rev < 0x35 || u3_rev > 0x39) |
| 1876 | return; | 1876 | return; |
| 1877 | /* does it need fixup ? */ | 1877 | /* does it need fixup ? */ |
| 1878 | if (prom_getproplen(i2c, "interrupts") > 0) | 1878 | if (prom_getproplen(i2c, "interrupts") > 0) |
diff --git a/arch/ppc64/kernel/prom_init.c b/arch/ppc64/kernel/prom_init.c index e72b3f9061f0..e4c880dab997 100644 --- a/arch/ppc64/kernel/prom_init.c +++ b/arch/ppc64/kernel/prom_init.c | |||
| @@ -1824,7 +1824,7 @@ static void __init fixup_device_tree(void) | |||
| 1824 | if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev)) | 1824 | if (prom_getprop(u3, "device-rev", &u3_rev, sizeof(u3_rev)) |
| 1825 | == PROM_ERROR) | 1825 | == PROM_ERROR) |
| 1826 | return; | 1826 | return; |
| 1827 | if (u3_rev != 0x35 && u3_rev != 0x37) | 1827 | if (u3_rev < 0x35 || u3_rev > 0x39) |
| 1828 | return; | 1828 | return; |
| 1829 | /* does it need fixup ? */ | 1829 | /* does it need fixup ? */ |
| 1830 | if (prom_getproplen(i2c, "interrupts") > 0) | 1830 | if (prom_getproplen(i2c, "interrupts") > 0) |
