Commit 2c0e61f7 authored by Paul King's avatar Paul King Committed by Linus Torvalds

[PATCH] Telephony Driver ISAPNP fix

I recently got an ISA Phonejack card and quickly found it wouldn't work
with a stock 2.6.7 kernel. 

So found this bug in the ISAPNP part of the code, throughout the code it
use it's own data structure to reference it's base IO address, in the
ISAPNP code this was not being populated with any value hence it can't talk
to the card and so the driver fails.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent e1bc2047
......@@ -7757,6 +7757,7 @@ int __init ixj_probe_isapnp(int *cnt)
}
j = ixj_alloc();
j->DSPbase = pnp_port_start(dev,0);
request_region(j->DSPbase, 16, "ixj DSP");
if (func != 0x110)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment