]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] 2.5.8-pre2 i8xx series chipsets patches
authorWim Van Sebroeck <wim@iguana.be>
Wed, 10 Apr 2002 00:25:13 +0000 (02:25 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Wed, 10 Apr 2002 00:25:13 +0000 (02:25 +0200)
i810_rng: add support for other i8xx chipsets to the Random Number Generator module.
This is being done by adding the detection of the 82801BA(M) and 82801CA(M) I/O Controller Hub's.

Documentation/i810_rng.txt
drivers/char/i810_rng.c

index e27f61456bfbfd426f8a8fd34f58d9019289fd66..c76805f32537b878ecbd90ed5deb0b900c31e53e 100644 (file)
@@ -70,6 +70,10 @@ Driver details:
 
 Change history:
 
+       Version 0.9.7:
+       * Support other i8xx chipsets too (by adding 82801BA(M) and
+         82801CA(M) detection)
+
        Version 0.9.6:
        * Internal driver cleanups, prep for 1.0.0 release.
 
index 72ee3ef7173e9443a29837715875a5006578ccd3..39a068525862b094f09bb67c54ccf5b3b3c711e9 100644 (file)
@@ -35,7 +35,7 @@
 /*
  * core module and version information
  */
-#define RNG_VERSION "0.9.6"
+#define RNG_VERSION "0.9.7"
 #define RNG_MODULE_NAME "i810_rng"
 #define RNG_DRIVER_NAME   RNG_MODULE_NAME " hardware driver " RNG_VERSION
 #define PFX RNG_MODULE_NAME ": "
@@ -334,7 +334,8 @@ err_out:
 static struct pci_device_id rng_pci_tbl[] __initdata = {
        { 0x8086, 0x2418, PCI_ANY_ID, PCI_ANY_ID, },
        { 0x8086, 0x2428, PCI_ANY_ID, PCI_ANY_ID, },
-       { 0x8086, 0x1130, PCI_ANY_ID, PCI_ANY_ID, },
+       { 0x8086, 0x2448, PCI_ANY_ID, PCI_ANY_ID, },
+       { 0x8086, 0x244e, PCI_ANY_ID, PCI_ANY_ID, },
        { 0, },
 };
 MODULE_DEVICE_TABLE (pci, rng_pci_tbl);