From 210dccf3b51b8a66784c1c3b3c988c7c83a59ccd Mon Sep 17 00:00:00 2001 From: Gao Pan Date: Wed, 9 Dec 2015 15:33:53 +0800 Subject: [PATCH] MLK-11988 uapi: fix header files missing problem while building linux-test 3 uapi header files(mxc_sim_interface.h, pxp_dma.h, pxp_device.h) cannot be installed by the command "make headers_install" because they are not in Kbuild list, which impacts the linux-test build. This patch adds the 3 header files in Kbuild list. Signed-off-by: Gao Pan --- include/uapi/linux/Kbuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild index 989a2c44d56b..12274d7237d4 100644 --- a/include/uapi/linux/Kbuild +++ b/include/uapi/linux/Kbuild @@ -283,6 +283,7 @@ header-y += msg.h header-y += mxcfb.h header-y += mxc_dcic.h header-y += mxc_mlb.h +header-y += mxc_sim_interface.h header-y += mxc_v4l2.h header-y += mtio.h header-y += mxc_asrc.h @@ -356,6 +357,8 @@ header-y += prctl.h header-y += psci.h header-y += ptp_clock.h header-y += ptrace.h +header-y += pxp_dma.h +header-y += pxp_device.h header-y += qnx4_fs.h header-y += qnxtypes.h header-y += quota.h -- 2.17.1