Messages in this thread Patch in this message |  | | | Date | Fri, 28 Mar 1997 22:18:51 +0100 (MET) | | From | Riccardo Facchetti <> | | Subject | Matrox Mystique PCI id (pci.c/pci.h update) |
| |
Hello, I don't know who is the pci.c/pci.h mantainer, but I have an update to the list of PCI devices. I have just installed a Matrox Mystique and it seems to be not present in the PCI devices list. Follow a small diff.
Ciao, Riccardo. ----------- --- linux/drivers/pci/pci.c.orig Fri Mar 28 22:00:24 1997 +++ linux/drivers/pci/pci.c Fri Mar 28 22:13:26 1997 @@ -94,7 +94,8 @@ DEVICE( TRIDENT, TRIDENT_9660, "TG 9660"), DEVICE( AI, AI_M1435, "M1435"), DEVICE( MATROX, MATROX_MGA_2, "Atlas PX2085"), - DEVICE( MATROX, MATROX_MIL ,"Millennium"), + DEVICE( MATROX, MATROX_MIL, "Millennium"), + DEVICE( MATROX, MATROX_MYS, "Mystique"), DEVICE( MATROX, MATROX_MGA_IMP, "MGA Impression"), DEVICE( CT, CT_65545, "65545"), DEVICE( CT, CT_65548, "65548"), --- linux/include/linux/pci.h.orig Fri Mar 28 22:02:41 1997 +++ linux/include/linux/pci.h Fri Mar 28 22:14:01 1997 @@ -304,6 +304,7 @@ #define PCI_VENDOR_ID_MATROX 0x102B #define PCI_DEVICE_ID_MATROX_MGA_2 0x0518 #define PCI_DEVICE_ID_MATROX_MIL 0x0519 +#define PCI_DEVICE_ID_MATROX_MYS 0x051A #define PCI_DEVICE_ID_MATROX_MGA_IMP 0x0d10 #define PCI_VENDOR_ID_CT 0x102c
|  |