projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdd440f
)
[PATCH] s390: fix match in ccw modalias
author
Bastian Blank
<
[email protected]
>
Mon, 6 Mar 2006 23:43:00 +0000
(15:43 -0800)
committer
Linus Torvalds
<
[email protected]
>
Tue, 7 Mar 2006 02:40:45 +0000
(18:40 -0800)
Fix matching of devmodel in modaliases. It breaks automatic loading of any
dasd module.
Cc: Heiko Carstens <
[email protected]
>
Cc: Martin Schwidefsky <
[email protected]
>
Acked-by: Cornelia Huck <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
scripts/mod/file2alias.c
patch
|
blob
|
history
diff --git
a/scripts/mod/file2alias.c
b/scripts/mod/file2alias.c
index be97caf664bbf47bc6e7ff5e98cf5f6b297f2e62..c164b230ad6fbe2518e873ee143ed9655df137f0 100644
(file)
--- a/
scripts/mod/file2alias.c
+++ b/
scripts/mod/file2alias.c
@@
-246,7
+246,7
@@
static int do_ccw_entry(const char *filename,
id->cu_model);
ADD(alias, "dt", id->match_flags&CCW_DEVICE_ID_MATCH_DEVICE_TYPE,
id->dev_type);
- ADD(alias, "dm", id->match_flags&CCW_DEVICE_ID_MATCH_DEVICE_
TYPE
,
+ ADD(alias, "dm", id->match_flags&CCW_DEVICE_ID_MATCH_DEVICE_
MODEL
,
id->dev_model);
return 1;
}