Skip to content

Commit 368a121

Browse files
tbreedsozbenh
authored andcommitted
powerpc: Run sbc610 USB fixup code only on the appropriate platform.
commit a969e76 (powerpc: Correct USB support for GE Fanuc SBC610) introduced a fixup for NEC usb controllers. This fixup should only run on GEF SBC610 boards. Fixes Fedora bug #486511. (https://bugzilla.redhat.com/show_bug.cgi?id=486511) Signed-off-by: Tony Breeds <tony@bakeyournoodle.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1 parent fec6c6f commit 368a121

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/powerpc/platforms/86xx/gef_sbc610.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ static void __init gef_sbc610_nec_fixup(struct pci_dev *pdev)
142142
{
143143
unsigned int val;
144144

145+
/* Do not do the fixup on other platforms! */
146+
if (!machine_is(gef_sbc610))
147+
return;
148+
145149
printk(KERN_INFO "Running NEC uPD720101 Fixup\n");
146150

147151
/* Ensure ports 1, 2, 3, 4 & 5 are enabled */

0 commit comments

Comments
 (0)