arch: hexagon: include: uapi: asm: setup.h add swith macro __KERNEL__

Define dummy '__init' instead of include "linux/init.h" if !__KERNEL__,
or can not pass checking. The related error (with allmodconfig under
hexagon):

    CHECK   include/asm (34 files)
  usr/include/asm/setup.h:22: included file 'linux/init.h' is not exported

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
This commit is contained in:
Chen Gang 2013-11-27 13:28:36 +08:00 committed by Richard Kuo
parent 6becd400f8
commit 8d7e6a1dbe
1 changed files with 5 additions and 0 deletions

View File

@ -19,7 +19,12 @@
#ifndef _ASM_SETUP_H
#define _ASM_SETUP_H
#ifdef __KERNEL__
#include <linux/init.h>
#else
#define __init
#endif
#include <asm-generic/setup.h>
extern char external_cmdline_buffer;