Commit 55ce6346 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by James Bottomley

[PATCH] back out bogus init.h change

sorry, the last patch I sent you contained a bogus change
for include/linux/init.h (to get around a local compile problem).

This patch backs it out.
parent db7aff0b
...@@ -94,7 +94,7 @@ extern struct kernel_param __setup_start, __setup_end; ...@@ -94,7 +94,7 @@ extern struct kernel_param __setup_start, __setup_end;
* or exit time. * or exit time.
*/ */
#define __init __attribute__ ((__section__ (".init.text"))) #define __init __attribute__ ((__section__ (".init.text")))
#define __exit //__attribute__ ((unused, __section__(".exit.text"))) #define __exit __attribute__ ((unused, __section__(".exit.text")))
#define __initdata __attribute__ ((__section__ (".init.data"))) #define __initdata __attribute__ ((__section__ (".init.data")))
#define __exitdata __attribute__ ((unused, __section__ (".exit.data"))) #define __exitdata __attribute__ ((unused, __section__ (".exit.data")))
#define __initsetup __attribute__ ((unused,__section__ (".init.setup"))) #define __initsetup __attribute__ ((unused,__section__ (".init.setup")))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment