diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-09-07 01:00:22 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-09-27 13:37:40 +0100 |
commit | 8f9a2b324644d3f8c233287f0a7764d61655cda4 (patch) | |
tree | c35f35bb0e5c4999237f4b954d6fe393985dfad8 /include/asm-mips/timex.h | |
parent | d34555fb20e7abf33f86d7aa3ec0826343f38256 (diff) |
[MIPS] Fix errors detected by "make headers_check"
* export asm/sgidefs.h
* include asm/isadep.h only if in kernel
* do not export contents of asm/timex.h and asm/user.h
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/timex.h')
-rw-r--r-- | include/asm-mips/timex.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-mips/timex.h b/include/asm-mips/timex.h index 98aa737b34a..b80de8e0fbb 100644 --- a/include/asm-mips/timex.h +++ b/include/asm-mips/timex.h @@ -8,6 +8,8 @@ #ifndef _ASM_TIMEX_H #define _ASM_TIMEX_H +#ifdef __KERNEL__ + #include <asm/mipsregs.h> /* @@ -51,4 +53,6 @@ static inline cycles_t get_cycles (void) return read_c0_count(); } +#endif /* __KERNEL__ */ + #endif /* _ASM_TIMEX_H */ |