From: Andrew Morton Signed-off-by: Andrew Morton --- scripts/mod/file2alias.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN scripts/mod/file2alias.c~git-net-fixup scripts/mod/file2alias.c --- a/scripts/mod/file2alias.c~git-net-fixup +++ a/scripts/mod/file2alias.c @@ -648,6 +648,10 @@ void handle_moddevtable(struct module *m do_table(symval, sym->st_size, sizeof(struct sdio_device_id), "sdio", do_sdio_entry, mod); + else if (sym_is(symname, "__mod_ssb_device_table")) + do_table(symval, sym->st_size, + sizeof(struct ssb_device_id), "ssb", + do_ssb_entry, mod); free(zeros); } _