To: linus, akpm Cc: lkml Subject: [PATCH] M68k asm/system.h M68k: Add missing #ifdef __KERNEL / #endif (from Christian T. Steigies) --- system.h | 4 ++++ 1 file changed, 4 insertions(+) --- linux-2.6.0/include/asm-m68k/system.h 2003-10-15 11:13:29.000000000 -0400 +++ linux-m68k-2.6.0/include/asm-m68k/system.h 2003-11-18 22:33:02.000000000 -0500 @@ -7,6 +7,8 @@ #include #include +#ifdef __KERNEL__ + /* * switch_to(n) should switch tasks to task ptr, first checking that * ptr isn't the current task, in which case it does nothing. This @@ -156,4 +158,6 @@ } #endif +#endif /* __KERNEL__ */ + #endif /* _M68K_SYSTEM_H */