Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751956AbdCHIaD (ORCPT ); Wed, 8 Mar 2017 03:30:03 -0500 Received: from mail-pg0-f67.google.com ([74.125.83.67]:35117 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751796AbdCHI3p (ORCPT ); Wed, 8 Mar 2017 03:29:45 -0500 From: Naohiro Aota To: thatslyude@gmail.com Cc: linux-kernel@vger.kernel.org, trivial@kernel.org, Naohiro Aota Subject: [PATCH] uapi: add missing install of userio.h Date: Wed, 8 Mar 2017 17:22:47 +0900 Message-Id: <20170308082247.21690-1-naota@elisp.net> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 756 Lines: 24 While commit 5523662edd4f ("Input: add userio module") added userio.h under the uapi/ directory, it forgot to add the header file to Kbuild. Thus, the file is missing from header installation. This patch just resolve the issue by adding the missing entry. Signed-off-by: Naohiro Aota --- include/uapi/linux/Kbuild | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild index dd9820b1c779..f8d9fed17ba9 100644 --- a/include/uapi/linux/Kbuild +++ b/include/uapi/linux/Kbuild @@ -445,6 +445,7 @@ header-y += unistd.h header-y += unix_diag.h header-y += usbdevice_fs.h header-y += usbip.h +header-y += userio.h header-y += utime.h header-y += utsname.h header-y += uuid.h -- 2.11.0