diff options
| author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-15 01:44:51 -0400 |
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-15 01:44:51 -0400 |
| commit | 43d2548bb2ef7e6d753f91468a746784041e522d (patch) | |
| tree | 77d13fcd48fd998393abb825ec36e2b732684a73 /scripts/mod | |
| parent | 585583d95c5660973bc0cf64add517b040acd8a4 (diff) | |
| parent | 85082fd7cbe3173198aac0eb5e85ab1edcc6352c (diff) | |
Merge commit '85082fd7cbe3173198aac0eb5e85ab1edcc6352c' into test-build
Manual fixup of:
arch/powerpc/Kconfig
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 cea4a790e1e9..37d5c363fbcd 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
| @@ -304,6 +304,14 @@ static int do_ap_entry(const char *filename, | |||
| 304 | return 1; | 304 | return 1; |
| 305 | } | 305 | } |
| 306 | 306 | ||
| 307 | /* looks like: "css:tN" */ | ||
| 308 | static int do_css_entry(const char *filename, | ||
| 309 | struct css_device_id *id, char *alias) | ||
| 310 | { | ||
| 311 | sprintf(alias, "css:t%01X", id->type); | ||
| 312 | return 1; | ||
| 313 | } | ||
| 314 | |||
| 307 | /* Looks like: "serio:tyNprNidNexN" */ | 315 | /* Looks like: "serio:tyNprNidNexN" */ |
| 308 | static int do_serio_entry(const char *filename, | 316 | static int do_serio_entry(const char *filename, |
| 309 | struct serio_device_id *id, char *alias) | 317 | struct serio_device_id *id, char *alias) |
| @@ -680,6 +688,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
| 680 | do_table(symval, sym->st_size, | 688 | do_table(symval, sym->st_size, |
| 681 | sizeof(struct ap_device_id), "ap", | 689 | sizeof(struct ap_device_id), "ap", |
| 682 | do_ap_entry, mod); | 690 | do_ap_entry, mod); |
| 691 | else if (sym_is(symname, "__mod_css_device_table")) | ||
| 692 | do_table(symval, sym->st_size, | ||
| 693 | sizeof(struct css_device_id), "css", | ||
| 694 | do_css_entry, mod); | ||
| 683 | else if (sym_is(symname, "__mod_serio_device_table")) | 695 | else if (sym_is(symname, "__mod_serio_device_table")) |
| 684 | do_table(symval, sym->st_size, | 696 | do_table(symval, sym->st_size, |
| 685 | sizeof(struct serio_device_id), "serio", | 697 | sizeof(struct serio_device_id), "serio", |
