From: Gao Pan Date: Wed, 9 Dec 2015 07:33:53 +0000 (+0800) Subject: MLK-11988 uapi: fix header files missing problem while building linux-test X-Git-Tag: C0P2-H0.0--20200415~3928 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=210dccf3b51b8a66784c1c3b3c988c7c83a59ccd;p=linux.git 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 --- 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