From: Paul M. <le...@us...> - 2001-10-28 02:40:47
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr4122/eagle In directory usw-pr-cvs1:/tmp/cvs-serv9867/mips/vr4122/eagle Modified Files: pci.c Log Message: Use the Vrc5477 ID instead.. they're the same anyways.. Index: pci.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr4122/eagle/pci.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- pci.c 2001/10/09 21:54:21 1.3 +++ pci.c 2001/10/28 02:40:44 1.4 @@ -215,7 +215,12 @@ case PCI_VENDOR_ID_NEC: switch (dev->device) { case PCI_DEVICE_ID_NEC_VRC4173_BCU: - case PCI_DEVICE_ID_NEC_VRC4173_AC97: + /* + * The Vrc4173 and Vrc5477 AC97 controller are one and the + * same, therefore it should be no surprise that they share + * the same PCI ID. -Lethal + */ + case PCI_DEVICE_ID_NEC_VRC5477_AC97: case PCI_DEVICE_ID_NEC_VRC4173_CARDU: case PCI_DEVICE_ID_NEC_VRC4173_USB: /* all three share the same IRQ */ dev->irq = VR4122_IRQ_VRC4173; |