diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-07-10 03:32:54 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-07-11 21:33:52 +0900 |
commit | b6744e04143dfe99f00b98367bc7e9e3449d7c07 (patch) | |
tree | f1473bf5c569990b9d2ff100350d51b47dfad00d /arch/sparc | |
parent | 895931232d9358e0016f580f26b336c29c9528cc (diff) | |
download | op-kernel-dev-b6744e04143dfe99f00b98367bc7e9e3449d7c07.zip op-kernel-dev-b6744e04143dfe99f00b98367bc7e9e3449d7c07.tar.gz |
sparc: 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/sparc')
-rw-r--r-- | arch/sparc/include/asm/Kbuild | 1 | ||||
-rw-r--r-- | arch/sparc/include/uapi/asm/Kbuild | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/Kbuild b/arch/sparc/include/asm/Kbuild index e9e837b..80ddc01 100644 --- a/arch/sparc/include/asm/Kbuild +++ b/arch/sparc/include/asm/Kbuild @@ -18,5 +18,4 @@ generic-y += preempt.h generic-y += rwsem.h generic-y += serial.h generic-y += trace_clock.h -generic-y += types.h generic-y += word-at-a-time.h diff --git a/arch/sparc/include/uapi/asm/Kbuild b/arch/sparc/include/uapi/asm/Kbuild index b15bf6b..2178c78 100644 --- a/arch/sparc/include/uapi/asm/Kbuild +++ b/arch/sparc/include/uapi/asm/Kbuild @@ -1,2 +1,4 @@ # UAPI Header export list include include/uapi/asm-generic/Kbuild.asm + +generic-y += types.h |