aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mod/modpost.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 40fb7b6a00b1..8424d1f53bbe 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -641,12 +641,6 @@ static int strrcmp(const char *s, const char *sub)
641 * tosec = .init.text 641 * tosec = .init.text
642 * fromsec = .paravirtprobe 642 * fromsec = .paravirtprobe
643 * 643 *
644 * Pattern 9:
645 * Some of functions are common code between boot time and hotplug
646 * time. The bootmem allocater is called only boot time in its
647 * functions. So it's ok to reference.
648 * tosec = .init.text
649 *
650 * Pattern 10: 644 * Pattern 10:
651 * ia64 has machvec table for each platform and 645 * ia64 has machvec table for each platform and
652 * powerpc has a machine desc table for each platform. 646 * powerpc has a machine desc table for each platform.
@@ -678,12 +672,6 @@ static int secref_whitelist(const char *modname, const char *tosec,
678 NULL 672 NULL
679 }; 673 };
680 674
681 const char *pat4sym[] = {
682 "sparse_index_alloc",
683 "zone_wait_table_init",
684 NULL
685 };
686
687 /* Check for pattern 0 */ 675 /* Check for pattern 0 */
688 if ((strcmp(fromsec, ".text.init.refok") == 0) || 676 if ((strcmp(fromsec, ".text.init.refok") == 0) ||
689 (strcmp(fromsec, ".data.init.refok") == 0)) 677 (strcmp(fromsec, ".data.init.refok") == 0))
@@ -741,13 +729,6 @@ static int secref_whitelist(const char *modname, const char *tosec,
741 (strcmp(fromsec, ".paravirtprobe") == 0)) 729 (strcmp(fromsec, ".paravirtprobe") == 0))
742 return 1; 730 return 1;
743 731
744 /* Check for pattern 9 */
745 if ((strcmp(tosec, ".init.text") == 0) &&
746 (strcmp(fromsec, ".text") == 0))
747 for (s = pat4sym; *s; s++)
748 if (strcmp(atsym, *s) == 0)
749 return 1;
750
751 /* Check for pattern 10 */ 732 /* Check for pattern 10 */
752 if ((strcmp(fromsec, ".machvec") == 0) || 733 if ((strcmp(fromsec, ".machvec") == 0) ||
753 (strcmp(fromsec, ".machine.desc") == 0)) 734 (strcmp(fromsec, ".machine.desc") == 0))