summaryrefslogtreecommitdiffstats
path: root/include/asm-m68k/init.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-02-18 22:06:10 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-02-18 22:06:10 +0000
commitaba4e552a2f2c1492441acbccedd8e0a4c53f916 (patch)
tree23921efb2b4af590160f034a89ff3da2ecca6e47 /include/asm-m68k/init.h
parent9e17e1aa1cf1cb497d2f67147a51831888affcf3 (diff)
Merge with Linux 2.3.43.
Diffstat (limited to 'include/asm-m68k/init.h')
-rw-r--r--include/asm-m68k/init.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/asm-m68k/init.h b/include/asm-m68k/init.h
index dc73aed8a..aa3351983 100644
--- a/include/asm-m68k/init.h
+++ b/include/asm-m68k/init.h
@@ -1,10 +1,6 @@
#ifndef _M68K_INIT_H
#define _M68K_INIT_H
-#include <linux/config.h>
-
-#ifndef CONFIG_KGDB
-
#define __init __attribute__ ((__section__ (".text.init")))
#define __initdata __attribute__ ((__section__ (".data.init")))
/* For assembly routines */
@@ -12,18 +8,4 @@
#define __FINIT .previous
#define __INITDATA .section ".data.init",#alloc,#write
-#else
-
-/* gdb doesn't like it all if the code for one source file isn't together in
- * the executable, so we must avoid the .init sections :-( */
-
-#define __init
-#define __initdata
-/* For assembly routines */
-#define __INIT
-#define __FINIT
-#define __INITDATA
-
-#endif /* CONFIG_KGDB */
-
#endif