arch/tile: export only COMMAND_LINE_SIZE to userspace.

This fixes a failure in "make headers_check" for tile.
I hadn't realized this file was exported to userspace by default.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>

+6 -2
+6 -2
arch/tile/include/asm/setup.h
··· 15 15 #ifndef _ASM_TILE_SETUP_H 16 16 #define _ASM_TILE_SETUP_H 17 17 18 + #define COMMAND_LINE_SIZE 2048 19 + 20 + #ifdef __KERNEL__ 21 + 18 22 #include <linux/pfn.h> 19 23 #include <linux/init.h> 20 24 ··· 27 23 */ 28 24 #define MAXMEM_PFN PFN_DOWN(MAXMEM) 29 25 30 - #define COMMAND_LINE_SIZE 2048 31 - 32 26 void early_panic(const char *fmt, ...); 33 27 void warn_early_printk(void); 34 28 void __init disable_early_printk(void); 29 + 30 + #endif /* __KERNEL__ */ 35 31 36 32 #endif /* _ASM_TILE_SETUP_H */