[PATCH] Fix an offset error when reading the CS89x0 ADD_PORT register

Fix an offset error when reading the CS89x0 ADD_PORT register.

Signed-off-by: George G. Davis
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
George G. Davis 2006-11-16 14:50:14 -05:00 коммит произвёл Jeff Garzik
Родитель 7bd54c8636
Коммит 9e1402ab89
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -588,10 +588,10 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
goto out2; goto out2;
} }
} }
printk(KERN_DEBUG "PP_addr at %x[%x]: 0x%x\n",
ioaddr, ADD_PORT, readword(ioaddr, ADD_PORT));
ioaddr &= ~3; ioaddr &= ~3;
printk(KERN_DEBUG "PP_addr at %x[%x]: 0x%x\n",
ioaddr, ADD_PORT, readword(ioaddr, ADD_PORT));
writeword(ioaddr, ADD_PORT, PP_ChipID); writeword(ioaddr, ADD_PORT, PP_ChipID);
tmp = readword(ioaddr, DATA_PORT); tmp = readword(ioaddr, DATA_PORT);