2001-11-15 12:45:07

by Nicolas ASPERT

[permalink] [raw]
Subject: [PATCH]AGP incorrect PCI id fix

diff -Nru linux-2.4.15-pre4.clean/drivers/char/Config.in linux-2.4.15-pre4/drivers/char/Config.in
--- linux-2.4.15-pre4.clean/drivers/char/Config.in Thu Nov 15 13:29:04 2001
+++ linux-2.4.15-pre4/drivers/char/Config.in Tue Nov 13 16:28:31 2001
@@ -210,7 +210,7 @@

dep_tristate '/dev/agpgart (AGP Support)' CONFIG_AGP $CONFIG_DRM_AGP
if [ "$CONFIG_AGP" != "n" ]; then
- bool ' Intel 440LX/BX/GX and I815/I830M/I840/I850 support' CONFIG_AGP_INTEL
+ bool ' Intel 440LX/BX/GX and I815/I820/I830M/I840/I845/I850/I860 support' CONFIG_AGP_INTEL
bool ' Intel I810/I815/I830M (on-board) support' CONFIG_AGP_I810
bool ' VIA chipset support' CONFIG_AGP_VIA
bool ' AMD Irongate, 761, and 762 support' CONFIG_AGP_AMD
diff -Nru linux-2.4.15-pre4.clean/drivers/char/agp/agp.h linux-2.4.15-pre4/drivers/char/agp/agp.h
--- linux-2.4.15-pre4.clean/drivers/char/agp/agp.h Thu Nov 15 13:29:04 2001
+++ linux-2.4.15-pre4/drivers/char/agp/agp.h Thu Nov 15 13:24:49 2001
@@ -179,6 +179,9 @@
#ifndef PCI_DEVICE_ID_INTEL_820_0
#define PCI_DEVICE_ID_INTEL_820_0 0x2500
#endif
+#ifndef PCI_DEVICE_ID_INTEL_820_UP_0
+#define PCI_DEVICE_ID_INTEL_820_UP_0 0x2501
+#endif
#ifndef PCI_DEVICE_ID_INTEL_840_0
#define PCI_DEVICE_ID_INTEL_840_0 0x1a21
#endif
@@ -189,7 +192,7 @@
#define PCI_DEVICE_ID_INTEL_850_0 0x2530
#endif
#ifndef PCI_DEVICE_ID_INTEL_860_0
-#define PCI_DEVICE_ID_INTEL_860_0 0x2532
+#define PCI_DEVICE_ID_INTEL_860_0 0x2531
#endif
#ifndef PCI_DEVICE_ID_INTEL_810_DC100_0
#define PCI_DEVICE_ID_INTEL_810_DC100_0 0x7122
diff -Nru linux-2.4.15-pre4.clean/drivers/char/agp/agpgart_be.c linux-2.4.15-pre4/drivers/char/agp/agpgart_be.c
--- linux-2.4.15-pre4.clean/drivers/char/agp/agpgart_be.c Thu Nov 15 13:29:04 2001
+++ linux-2.4.15-pre4/drivers/char/agp/agpgart_be.c Thu Nov 15 13:21:00 2001
@@ -3552,6 +3552,12 @@
"Intel",
"i820",
intel_820_setup },
+ { PCI_DEVICE_ID_INTEL_820_UP_0,
+ PCI_VENDOR_ID_INTEL,
+ INTEL_I820,
+ "Intel",
+ "i820",
+ intel_820_setup },
{ PCI_DEVICE_ID_INTEL_830_M_0,
PCI_VENDOR_ID_INTEL,
INTEL_I830_M,


Attachments:
patch-agp_i8xx-2.4.15-pre4_fix_pci_ids (2.04 kB)