From: Eric Van Buggenhaut OTOH, pci.lst lists device 80862430 as another RNG # grep 80862430 /lib/discover/pci.lst 80862430 bridge i810_rng 82801AB PCI Bridge but it's not listed in rng_pci_tbl[] Cc: Jeff Garzik Signed-off-by: Andrew Morton --- drivers/char/hw_random.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/char/hw_random.c~hw_random-82801ab-pci-bridge-support drivers/char/hw_random.c --- devel/drivers/char/hw_random.c~hw_random-82801ab-pci-bridge-support 2006-01-04 01:56:05.000000000 -0800 +++ devel-akpm/drivers/char/hw_random.c 2006-01-04 01:56:05.000000000 -0800 @@ -169,6 +169,7 @@ static struct pci_device_id rng_pci_tbl[ { 0x8086, 0x2418, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, { 0x8086, 0x2428, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, + { 0x8086, 0x2430, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, { 0x8086, 0x2448, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, { 0x8086, 0x244e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, { 0x8086, 0x245e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, rng_hw_intel }, _