diff options
Diffstat (limited to 'scripts/mod')
| -rw-r--r-- | scripts/mod/file2alias.c | 38 | ||||
| -rw-r--r-- | scripts/mod/modpost.c | 1 |
2 files changed, 39 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 8a09021d8c59..36e3754db53a 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
| @@ -484,6 +484,36 @@ static int do_parisc_entry(const char *filename, struct parisc_device_id *id, | |||
| 484 | return 1; | 484 | return 1; |
| 485 | } | 485 | } |
| 486 | 486 | ||
| 487 | /* Looks like: sdio:cNvNdN. */ | ||
| 488 | static int do_sdio_entry(const char *filename, | ||
| 489 | struct sdio_device_id *id, char *alias) | ||
| 490 | { | ||
| 491 | id->class = TO_NATIVE(id->class); | ||
| 492 | id->vendor = TO_NATIVE(id->vendor); | ||
| 493 | id->device = TO_NATIVE(id->device); | ||
| 494 | |||
| 495 | strcpy(alias, "sdio:"); | ||
| 496 | ADD(alias, "c", id->class != (__u8)SDIO_ANY_ID, id->class); | ||
| 497 | ADD(alias, "v", id->vendor != (__u16)SDIO_ANY_ID, id->vendor); | ||
| 498 | ADD(alias, "d", id->device != (__u16)SDIO_ANY_ID, id->device); | ||
| 499 | return 1; | ||
| 500 | } | ||
| 501 | |||
| 502 | /* Looks like: ssb:vNidNrevN. */ | ||
| 503 | static int do_ssb_entry(const char *filename, | ||
| 504 | struct ssb_device_id *id, char *alias) | ||
| 505 | { | ||
| 506 | id->vendor = TO_NATIVE(id->vendor); | ||
| 507 | id->coreid = TO_NATIVE(id->coreid); | ||
| 508 | id->revision = TO_NATIVE(id->revision); | ||
| 509 | |||
| 510 | strcpy(alias, "ssb:"); | ||
| 511 | ADD(alias, "v", id->vendor != SSB_ANY_VENDOR, id->vendor); | ||
| 512 | ADD(alias, "id", id->coreid != SSB_ANY_ID, id->coreid); | ||
| 513 | ADD(alias, "rev", id->revision != SSB_ANY_REV, id->revision); | ||
| 514 | return 1; | ||
| 515 | } | ||
| 516 | |||
| 487 | /* Ignore any prefix, eg. v850 prepends _ */ | 517 | /* Ignore any prefix, eg. v850 prepends _ */ |
| 488 | static inline int sym_is(const char *symbol, const char *name) | 518 | static inline int sym_is(const char *symbol, const char *name) |
| 489 | { | 519 | { |
| @@ -599,6 +629,14 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
| 599 | do_table(symval, sym->st_size, | 629 | do_table(symval, sym->st_size, |
| 600 | sizeof(struct parisc_device_id), "parisc", | 630 | sizeof(struct parisc_device_id), "parisc", |
| 601 | do_parisc_entry, mod); | 631 | do_parisc_entry, mod); |
| 632 | else if (sym_is(symname, "__mod_sdio_device_table")) | ||
| 633 | do_table(symval, sym->st_size, | ||
| 634 | sizeof(struct sdio_device_id), "sdio", | ||
| 635 | do_sdio_entry, mod); | ||
| 636 | else if (sym_is(symname, "__mod_ssb_device_table")) | ||
| 637 | do_table(symval, sym->st_size, | ||
| 638 | sizeof(struct ssb_device_id), "ssb", | ||
| 639 | do_ssb_entry, mod); | ||
| 602 | } | 640 | } |
| 603 | 641 | ||
| 604 | /* Now add out buffered information to the generated C source */ | 642 | /* Now add out buffered information to the generated C source */ |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 6c145d6e89de..0a4051fbd34e 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
| @@ -709,6 +709,7 @@ static int secref_whitelist(const char *modname, const char *tosec, | |||
| 709 | 709 | ||
| 710 | /* Check for pattern 0 */ | 710 | /* Check for pattern 0 */ |
| 711 | if ((strncmp(fromsec, ".text.init.refok", strlen(".text.init.refok")) == 0) || | 711 | if ((strncmp(fromsec, ".text.init.refok", strlen(".text.init.refok")) == 0) || |
| 712 | (strncmp(fromsec, ".exit.text.refok", strlen(".exit.text.refok")) == 0) || | ||
| 712 | (strncmp(fromsec, ".data.init.refok", strlen(".data.init.refok")) == 0)) | 713 | (strncmp(fromsec, ".data.init.refok", strlen(".data.init.refok")) == 0)) |
| 713 | return 1; | 714 | return 1; |
| 714 | 715 | ||
