The patch titled toshiba.h: hide a function prototypes behind __KERNEL__ macro has been added to the -mm tree. Its filename is toshibah-hide-a-function-prototypes-behind-__kernel__-macro.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: toshiba.h: hide a function prototypes behind __KERNEL__ macro From: Alexander Shishkin <virtuoso@xxxxxxxxx> Currently, tosh_smm() prototype is present in a header file exported to userland. This patch fixes it. Signed-off-by: Alexander Shishkin <virtuoso@xxxxxxxxx> Cc: Jonathan Buzzard <jonathan@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/toshiba.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/toshiba.h~toshibah-hide-a-function-prototypes-behind-__kernel__-macro include/linux/toshiba.h --- a/include/linux/toshiba.h~toshibah-hide-a-function-prototypes-behind-__kernel__-macro +++ a/include/linux/toshiba.h @@ -33,6 +33,8 @@ typedef struct { unsigned int edi __attribute__ ((packed)); } SMMRegisters; +#ifdef __KERNEL__ int tosh_smm(SMMRegisters *regs); +#endif /* __KERNEL__ */ #endif _ Patches currently in -mm which might be from virtuoso@xxxxxxxxx are headers_check-better-search-for-functions-in-headers.patch headers_check-better-search-for-functions-in-headers-fix.patch headers_check-better-search-for-functions-in-headers-fix-checkpatch-fixes.patch scsi-fix-a-header-to-include-linux-typesh.patch toshibah-hide-a-function-prototypes-behind-__kernel__-macro.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html