diff options
author | Eric Van Buggenhaut <ericvb@debian.org> | 2006-01-08 01:05:03 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 20:14:06 -0800 |
commit | e0804b17984afa1504649e2535db489d2a3029b6 (patch) | |
tree | de1ad2a173e5fecaeffdcbcf93e30fbd3965bf39 | |
parent | 19144d0beab077950f3e767385e3c1050061b475 (diff) | |
download | op-kernel-dev-e0804b17984afa1504649e2535db489d2a3029b6.zip op-kernel-dev-e0804b17984afa1504649e2535db489d2a3029b6.tar.gz |
[PATCH] hw_random: 82801AB PCI Bridge support
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 <jgarzik@pobox.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/char/hw_random.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/hw_random.c b/drivers/char/hw_random.c index 49769f5..b3bc2e3 100644 --- a/drivers/char/hw_random.c +++ b/drivers/char/hw_random.c @@ -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 }, |