diff options
| author | Dave Jones <davej@redhat.com> | 2004-12-15 03:41:06 -0500 |
|---|---|---|
| committer | Dave Jones <davej@redhat.com> | 2004-12-15 03:41:06 -0500 |
| commit | 54fced5487b42121ffbca00d025a517bde5008d6 (patch) | |
| tree | 83db3f2a9dc4a1f80aa8710be473188945cb5d0a | |
| parent | 8c7c51313f7c53e4e8ae70cc5098f2ebc8393fcb (diff) | |
[AGPGART] Add support for ALI M1681/M1683
Signed-off-by: Dave Jones <davej@redhat.com>
| -rw-r--r-- | drivers/char/agp/ali-agp.c | 9 | ||||
| -rw-r--r-- | include/linux/pci_ids.h | 4 |
2 files changed, 12 insertions, 1 deletions
diff --git a/drivers/char/agp/ali-agp.c b/drivers/char/agp/ali-agp.c index 005b82019f38..4f3b310d5764 100644 --- a/drivers/char/agp/ali-agp.c +++ b/drivers/char/agp/ali-agp.c @@ -277,6 +277,15 @@ static struct agp_device_ids ali_agp_device_ids[] __devinitdata = .device_id = PCI_DEVICE_ID_AL_M1671, .chipset_name = "M1671", }, + { + .device_id = PCI_DEVICE_ID_AL_M1681, + .chipset_name = "M1681", + }, + { + .device_id = PCI_DEVICE_ID_AL_M1683, + .chipset_name = "M1683", + }, + { }, /* dummy final entry, always present */ }; diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index affb193a43e6..bfa1246e58bf 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -1017,6 +1017,7 @@ #define PCI_DEVICE_ID_AL_M1531 0x1531 #define PCI_DEVICE_ID_AL_M1533 0x1533 #define PCI_DEVICE_ID_AL_M1541 0x1541 +#define PCI_DEVICE_ID_AL_M1543 0x1543 #define PCI_DEVICE_ID_AL_M1563 0x1563 #define PCI_DEVICE_ID_AL_M1621 0x1621 #define PCI_DEVICE_ID_AL_M1631 0x1631 @@ -1026,7 +1027,8 @@ #define PCI_DEVICE_ID_AL_M1647 0x1647 #define PCI_DEVICE_ID_AL_M1651 0x1651 #define PCI_DEVICE_ID_AL_M1671 0x1671 -#define PCI_DEVICE_ID_AL_M1543 0x1543 +#define PCI_DEVICE_ID_AL_M1681 0x1681 +#define PCI_DEVICE_ID_AL_M1683 0x1683 #define PCI_DEVICE_ID_AL_M3307 0x3307 #define PCI_DEVICE_ID_AL_M4803 0x5215 #define PCI_DEVICE_ID_AL_M5219 0x5219 |
