mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
module: fix broken isapnp handling in file2alias
Handling of isapnp module aliases was broken by commit626596e295
by changing "isapnp" string to "isa". The code was then modified by commite49ce14150
but this bug remained. Change the string back to "isapnp". Signed-off-by: Ondrej Zary <linux@rainbow-software.org> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
10f296cbfe
commit
0d86f65ed0
@ -932,7 +932,7 @@ static int do_isapnp_entry(const char *filename,
|
||||
(id->function >> 12) & 0x0f, (id->function >> 8) & 0x0f);
|
||||
return 1;
|
||||
}
|
||||
ADD_TO_DEVTABLE("isa", struct isapnp_device_id, do_isapnp_entry);
|
||||
ADD_TO_DEVTABLE("isapnp", struct isapnp_device_id, do_isapnp_entry);
|
||||
|
||||
/*
|
||||
* Append a match expression for a single masked hex digit.
|
||||
|
Loading…
Reference in New Issue
Block a user