Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78d86c21 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

init.h: Remove __dev* sections from the kernel



With the recent work to remove CONFIG_HOTPLUG, we are starting to get a
bunch of __devinit section warnings, despite CONFIG_HOTPLUG always being
enabled.  So, stop marking the sections entirely, by defining them away
the section markings in init.h

Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent da095fd3
Loading
Loading
Loading
Loading
+7 −11
Original line number Original line Diff line number Diff line
@@ -93,13 +93,13 @@


#define __exit          __section(.exit.text) __exitused __cold notrace
#define __exit          __section(.exit.text) __exitused __cold notrace


/* Used for HOTPLUG */
/* Used for HOTPLUG, but that is always enabled now, so just make them noops */
#define __devinit        __section(.devinit.text) __cold notrace
#define __devinit
#define __devinitdata    __section(.devinit.data)
#define __devinitdata
#define __devinitconst   __constsection(.devinit.rodata)
#define __devinitconst
#define __devexit        __section(.devexit.text) __exitused __cold notrace
#define __devexit
#define __devexitdata    __section(.devexit.data)
#define __devexitdata
#define __devexitconst   __constsection(.devexit.rodata)
#define __devexitconst


/* Used for HOTPLUG_CPU */
/* Used for HOTPLUG_CPU */
#define __cpuinit        __section(.cpuinit.text) __cold notrace
#define __cpuinit        __section(.cpuinit.text) __cold notrace
@@ -126,10 +126,6 @@
#define __INITRODATA	.section	".init.rodata","a",%progbits
#define __INITRODATA	.section	".init.rodata","a",%progbits
#define __FINITDATA	.previous
#define __FINITDATA	.previous


#define __DEVINIT        .section	".devinit.text", "ax"
#define __DEVINITDATA    .section	".devinit.data", "aw"
#define __DEVINITRODATA  .section	".devinit.rodata", "a"

#define __CPUINIT        .section	".cpuinit.text", "ax"
#define __CPUINIT        .section	".cpuinit.text", "ax"
#define __CPUINITDATA    .section	".cpuinit.data", "aw"
#define __CPUINITDATA    .section	".cpuinit.data", "aw"
#define __CPUINITRODATA  .section	".cpuinit.rodata", "a"
#define __CPUINITRODATA  .section	".cpuinit.rodata", "a"