diff options
author | Gao Pan <b54642@freescale.com> | 2015-12-09 15:33:53 +0800 |
---|---|---|
committer | Leonard Crestez <leonard.crestez@nxp.com> | 2018-08-24 12:20:42 +0300 |
commit | d3d9c9fdd3d469360d5621ef94cf78d64a6f062e (patch) | |
tree | d681c5125962af363aac0e0b2b370334df04f539 /include/uapi/linux/Kbuild | |
parent | 55706b2d3fb36208534eeb0c9685040c2233ca7c (diff) |
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 <B54642@freescale.com>
Diffstat (limited to 'include/uapi/linux/Kbuild')
-rw-r--r-- | include/uapi/linux/Kbuild | 3 |
1 files changed, 3 insertions, 0 deletions
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 |