From: Andrew Morton Cc: Jeff Garzik Cc: Jesse Huang Signed-off-by: Andrew Morton --- drivers/net/sundance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/sundance.c~sundance-phy-address-form-0-only-for-device-id-0x0200-fix drivers/net/sundance.c --- a/drivers/net/sundance.c~sundance-phy-address-form-0-only-for-device-id-0x0200-fix +++ a/drivers/net/sundance.c @@ -562,7 +562,7 @@ static int __devinit sundance_probe1 (st * It seems some phys doesn't deal well with address 0 being accessed * first, so leave address zero to the end of the loop (32 & 31). */ - if(sundance_pci_tbl[np->chip_id].device == 0x0200) + if (sundance_pci_tbl[np->chip_id].device == 0x0200) phy = 0; else phy = 1; _