diff options
| author | Jeff Garzik <jeff@garzik.org> | 2006-09-24 01:52:47 -0400 |
|---|---|---|
| committer | Jeff Garzik <jeff@garzik.org> | 2006-09-24 01:52:47 -0400 |
| commit | 23930fa1cebfea6f79881c588ccd1b0781e49e3f (patch) | |
| tree | 36d29e3f83661c4f5f45b6f74ac0d5f9886867a8 /scripts/mod | |
| parent | 36b35a5be0e4b406acd816e2122d153e875105be (diff) | |
| parent | 4f5537de7c1531398e84e18a24f667e49cc94208 (diff) | |
Merge branch 'master' into upstream
Diffstat (limited to 'scripts/mod')
| -rw-r--r-- | scripts/mod/file2alias.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index e2de650d3dbf..de76da80443f 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
| @@ -265,6 +265,14 @@ static int do_ccw_entry(const char *filename, | |||
| 265 | return 1; | 265 | return 1; |
| 266 | } | 266 | } |
| 267 | 267 | ||
| 268 | /* looks like: "ap:tN" */ | ||
| 269 | static int do_ap_entry(const char *filename, | ||
| 270 | struct ap_device_id *id, char *alias) | ||
| 271 | { | ||
| 272 | sprintf(alias, "ap:t%02X", id->dev_type); | ||
| 273 | return 1; | ||
| 274 | } | ||
| 275 | |||
| 268 | /* Looks like: "serio:tyNprNidNexN" */ | 276 | /* Looks like: "serio:tyNprNidNexN" */ |
| 269 | static int do_serio_entry(const char *filename, | 277 | static int do_serio_entry(const char *filename, |
| 270 | struct serio_device_id *id, char *alias) | 278 | struct serio_device_id *id, char *alias) |
| @@ -503,6 +511,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
| 503 | do_table(symval, sym->st_size, | 511 | do_table(symval, sym->st_size, |
| 504 | sizeof(struct ccw_device_id), "ccw", | 512 | sizeof(struct ccw_device_id), "ccw", |
| 505 | do_ccw_entry, mod); | 513 | do_ccw_entry, mod); |
| 514 | else if (sym_is(symname, "__mod_ap_device_table")) | ||
| 515 | do_table(symval, sym->st_size, | ||
| 516 | sizeof(struct ap_device_id), "ap", | ||
| 517 | do_ap_entry, mod); | ||
| 506 | else if (sym_is(symname, "__mod_serio_device_table")) | 518 | else if (sym_is(symname, "__mod_serio_device_table")) |
| 507 | do_table(symval, sym->st_size, | 519 | do_table(symval, sym->st_size, |
| 508 | sizeof(struct serio_device_id), "serio", | 520 | sizeof(struct serio_device_id), "serio", |
