diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-07-10 03:32:55 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-07-11 21:33:52 +0900 |
commit | c44e27181f8217bdab6f8ad25d34c68c26fbabb4 (patch) | |
tree | a963454c83990b6b7ab8da7dae2c7c8e5f55f3fc /arch/tile/include/uapi | |
parent | b6744e04143dfe99f00b98367bc7e9e3449d7c07 (diff) | |
download | op-kernel-dev-c44e27181f8217bdab6f8ad25d34c68c26fbabb4.zip op-kernel-dev-c44e27181f8217bdab6f8ad25d34c68c26fbabb4.tar.gz |
tile: move generic-y of exported headers to uapi/asm/Kbuild
Since commit fcc8487d477a ("uapi: export all headers under uapi
directories"), all (and only) headers under uapi directories are
exported, but asm-generic wrappers are still exceptions.
To complete de-coupling the uapi from kernel headers, move generic-y
of exported headers to uapi/asm/Kbuild.
With this change, "make headers_install" will just need to parse
uapi/asm/Kbuild to build up exported headers.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/tile/include/uapi')
-rw-r--r-- | arch/tile/include/uapi/asm/Kbuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/tile/include/uapi/asm/Kbuild b/arch/tile/include/uapi/asm/Kbuild index 0c74c3c..5711de0 100644 --- a/arch/tile/include/uapi/asm/Kbuild +++ b/arch/tile/include/uapi/asm/Kbuild @@ -1,4 +1,23 @@ # UAPI Header export list include include/uapi/asm-generic/Kbuild.asm +generic-y += errno.h +generic-y += fcntl.h +generic-y += ioctl.h +generic-y += ioctls.h +generic-y += ipcbuf.h +generic-y += msgbuf.h +generic-y += param.h +generic-y += poll.h +generic-y += posix_types.h +generic-y += resource.h +generic-y += sembuf.h +generic-y += shmbuf.h +generic-y += shmparam.h +generic-y += socket.h +generic-y += sockios.h +generic-y += statfs.h +generic-y += termbits.h +generic-y += termios.h +generic-y += types.h generic-y += ucontext.h |