diff options
Diffstat (limited to 'scripts/mod/file2alias.c')
-rw-r--r-- | scripts/mod/file2alias.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 473f94e56ead..d4dc222a74f3 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -206,6 +206,20 @@ static void do_usb_table(void *symval, unsigned long size, | |||
206 | do_usb_entry_multi(symval + i, mod); | 206 | do_usb_entry_multi(symval + i, mod); |
207 | } | 207 | } |
208 | 208 | ||
209 | /* Looks like: hid:bNvNpN */ | ||
210 | static int do_hid_entry(const char *filename, | ||
211 | struct hid_device_id *id, char *alias) | ||
212 | { | ||
213 | id->vendor = TO_NATIVE(id->vendor); | ||
214 | id->product = TO_NATIVE(id->product); | ||
215 | |||
216 | sprintf(alias, "hid:b%04X", id->bus); | ||
217 | ADD(alias, "v", id->vendor != HID_ANY_ID, id->vendor); | ||
218 | ADD(alias, "p", id->product != HID_ANY_ID, id->product); | ||
219 | |||
220 | return 1; | ||
221 | } | ||
222 | |||
209 | /* Looks like: ieee1394:venNmoNspNverN */ | 223 | /* Looks like: ieee1394:venNmoNspNverN */ |
210 | static int do_ieee1394_entry(const char *filename, | 224 | static int do_ieee1394_entry(const char *filename, |
211 | struct ieee1394_device_id *id, char *alias) | 225 | struct ieee1394_device_id *id, char *alias) |
@@ -745,6 +759,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
745 | else if (sym_is(symname, "__mod_usb_device_table")) | 759 | else if (sym_is(symname, "__mod_usb_device_table")) |
746 | /* special case to handle bcdDevice ranges */ | 760 | /* special case to handle bcdDevice ranges */ |
747 | do_usb_table(symval, sym->st_size, mod); | 761 | do_usb_table(symval, sym->st_size, mod); |
762 | else if (sym_is(symname, "__mod_hid_device_table")) | ||
763 | do_table(symval, sym->st_size, | ||
764 | sizeof(struct hid_device_id), "hid", | ||
765 | do_hid_entry, mod); | ||
748 | else if (sym_is(symname, "__mod_ieee1394_device_table")) | 766 | else if (sym_is(symname, "__mod_ieee1394_device_table")) |
749 | do_table(symval, sym->st_size, | 767 | do_table(symval, sym->st_size, |
750 | sizeof(struct ieee1394_device_id), "ieee1394", | 768 | sizeof(struct ieee1394_device_id), "ieee1394", |