From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754254AbcJENng (ORCPT ); Wed, 5 Oct 2016 09:43:36 -0400 Received: from mail-pf0-f196.google.com ([209.85.192.196]:35828 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754085AbcJENne (ORCPT ); Wed, 5 Oct 2016 09:43:34 -0400 From: Sudip Mukherjee To: Arnd Bergmann , Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, Sudip Mukherjee , Al Viro Subject: [PATCH] char: tb0219: fix build failure Date: Wed, 5 Oct 2016 19:13:22 +0530 Message-Id: <1475675002-18854-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The build of mips tb0219_defconfig was failing with the error: drivers/char/tb0219.c:188:2: error: implicit declaration of function 'put_user' drivers/char/tb0219.c:216:3: error: implicit declaration of function 'get_user' Quoting Al Viro - "another victim of indirect include chains" Fixes: 58a8f3b69e07 ("mips: separate extable.h, switch module.h to it") Cc: Al Viro Signed-off-by: Sudip Mukherjee --- build log is at: https://travis-ci.org/sudipm-mukherjee/parport/jobs/165143641 drivers/char/tb0219.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/char/tb0219.c b/drivers/char/tb0219.c index 480a777..7c19d9b 100644 --- a/drivers/char/tb0219.c +++ b/drivers/char/tb0219.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include -- 1.9.1