Commit 42650d8c9060a2658a79d4e30a5790b23d7753e0

Authored by Paul Mackerras
1 parent 88ced03149

powerpc: Fix some #ifndef __KERNEL__ that should be #ifdef

Grrr....

Signed-off-by: Paul Mackerras <paulus@samba.org>

Showing 3 changed files with 3 additions and 3 deletions Side-by-side Diff

include/asm-powerpc/heathrow.h
1 1 #ifndef _ASM_POWERPC_HEATHROW_H
2 2 #define _ASM_POWERPC_HEATHROW_H
3   -#ifndef __KERNEL__
  3 +#ifdef __KERNEL__
4 4 /*
5 5 * heathrow.h: definitions for using the "Heathrow" I/O controller chip.
6 6 *
include/asm-powerpc/ohare.h
1 1 #ifndef _ASM_POWERPC_OHARE_H
2 2 #define _ASM_POWERPC_OHARE_H
3   -#ifndef __KERNEL__
  3 +#ifdef __KERNEL__
4 4 /*
5 5 * ohare.h: definitions for using the "O'Hare" I/O controller chip.
6 6 *
include/asm-powerpc/seccomp.h
1 1 #ifndef _ASM_POWERPC_SECCOMP_H
2 2 #define _ASM_POWERPC_SECCOMP_H
3 3  
4   -#ifndef __KERNEL__
  4 +#ifdef __KERNEL__
5 5 #include <linux/thread_info.h>
6 6 #endif
7 7