Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

modpost: remove MEM_INIT_SECTIONS macro

ALL_XXXINIT_SECTIONS and MEM_INIT_SECTIONS are the same.
Remove the latter.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+1 -2
+1 -2
scripts/mod/modpost.c
··· 805 805 ".pci_fixup_enable", ".pci_fixup_resume", \ 806 806 ".pci_fixup_resume_early", ".pci_fixup_suspend" 807 807 808 - #define ALL_XXXINIT_SECTIONS MEM_INIT_SECTIONS 808 + #define ALL_XXXINIT_SECTIONS ".meminit.*" 809 809 810 810 #define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS 811 811 #define ALL_EXIT_SECTIONS EXIT_SECTIONS ··· 818 818 ".coldtext", ".softirqentry.text" 819 819 820 820 #define INIT_SECTIONS ".init.*" 821 - #define MEM_INIT_SECTIONS ".meminit.*" 822 821 823 822 #define EXIT_SECTIONS ".exit.*" 824 823