Skip to content

Commit

Permalink
ARC: remove extraneous __KERNEL__ guards
Browse files Browse the repository at this point in the history
Verified by doing make headers_install as none of these files are
exported to userspace
  • Loading branch information
Vineet Gupta committed Oct 13, 2014
1 parent ebc0c74 commit be64c99
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 35 deletions.
4 changes: 0 additions & 4 deletions arch/arc/include/asm/arcregs.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
#ifndef _ASM_ARC_ARCREGS_H
#define _ASM_ARC_ARCREGS_H

#ifdef __KERNEL__

/* Build Configuration Registers */
#define ARC_REG_DCCMBASE_BCR 0x61 /* DCCM Base Addr */
#define ARC_REG_CRC_BCR 0x62
Expand Down Expand Up @@ -321,6 +319,4 @@ extern struct cpuinfo_arc cpuinfo_arc700[];

#endif /* __ASEMBLY__ */

#endif /* __KERNEL__ */

#endif /* _ASM_ARC_ARCREGS_H */
4 changes: 0 additions & 4 deletions arch/arc/include/asm/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
#ifndef _ASM_ARC_ATOMIC_H
#define _ASM_ARC_ATOMIC_H

#ifdef __KERNEL__

#ifndef __ASSEMBLY__

#include <linux/types.h>
Expand Down Expand Up @@ -228,5 +226,3 @@ static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
#endif

#endif

#endif
4 changes: 0 additions & 4 deletions arch/arc/include/asm/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
#error only <linux/bitops.h> can be included directly
#endif

#ifdef __KERNEL__

#ifndef __ASSEMBLY__

#include <linux/types.h>
Expand Down Expand Up @@ -508,6 +506,4 @@ static inline __attribute__ ((const)) int __ffs(unsigned long word)

#endif /* !__ASSEMBLY__ */

#endif /* __KERNEL__ */

#endif
4 changes: 0 additions & 4 deletions arch/arc/include/asm/current.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
#ifndef _ASM_ARC_CURRENT_H
#define _ASM_ARC_CURRENT_H

#ifdef __KERNEL__

#ifndef __ASSEMBLY__

#ifdef CONFIG_ARC_CURR_IN_REG
Expand All @@ -27,6 +25,4 @@ register struct task_struct *curr_arc asm("r25");

#endif /* ! __ASSEMBLY__ */

#endif /* __KERNEL__ */

#endif /* _ASM_ARC_CURRENT_H */
4 changes: 0 additions & 4 deletions arch/arc/include/asm/irqflags.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
* -Conditionally disable interrupts (if they are not enabled, don't disable)
*/

#ifdef __KERNEL__

#include <asm/arcregs.h>

/* status32 Reg bits related to Interrupt Handling */
Expand Down Expand Up @@ -169,6 +167,4 @@ static inline int arch_irqs_disabled(void)

#endif /* __ASSEMBLY__ */

#endif /* KERNEL */

#endif
4 changes: 0 additions & 4 deletions arch/arc/include/asm/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
#ifndef __ASM_ARC_PROCESSOR_H
#define __ASM_ARC_PROCESSOR_H

#ifdef __KERNEL__

#ifndef __ASSEMBLY__

#include <asm/ptrace.h>
Expand Down Expand Up @@ -128,6 +126,4 @@ extern unsigned int get_wchan(struct task_struct *p);
*/
#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)

#endif /* __KERNEL__ */

#endif /* __ASM_ARC_PROCESSOR_H */
3 changes: 0 additions & 3 deletions arch/arc/include/asm/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

#include <linux/types.h>

#ifdef __KERNEL__

#define __HAVE_ARCH_MEMSET
#define __HAVE_ARCH_MEMCPY
#define __HAVE_ARCH_MEMCMP
Expand All @@ -36,5 +34,4 @@ extern char *strcpy(char *dest, const char *src);
extern int strcmp(const char *cs, const char *ct);
extern __kernel_size_t strlen(const char *);

#endif /* __KERNEL__ */
#endif /* _ASM_ARC_STRING_H */
4 changes: 0 additions & 4 deletions arch/arc/include/asm/syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
#ifndef _ASM_ARC_SYSCALLS_H
#define _ASM_ARC_SYSCALLS_H 1

#ifdef __KERNEL__

#include <linux/compiler.h>
#include <linux/linkage.h>
#include <linux/types.h>
Expand All @@ -22,6 +20,4 @@ int sys_arc_gettls(void);

#include <asm-generic/syscalls.h>

#endif /* __KERNEL__ */

#endif
4 changes: 0 additions & 4 deletions arch/arc/include/asm/thread_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
#ifndef _ASM_THREAD_INFO_H
#define _ASM_THREAD_INFO_H

#ifdef __KERNEL__

#include <asm/page.h>

#ifdef CONFIG_16KSTACKS
Expand Down Expand Up @@ -114,6 +112,4 @@ static inline __attribute_const__ struct thread_info *current_thread_info(void)
* syscall, so all that reamins to be tested is _TIF_WORK_MASK
*/

#endif /* __KERNEL__ */

#endif /* _ASM_THREAD_INFO_H */

0 comments on commit be64c99

Please sign in to comment.