From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753711Ab1HUIon (ORCPT ); Sun, 21 Aug 2011 04:44:43 -0400 Received: from mail-gx0-f174.google.com ([209.85.161.174]:37993 "EHLO mail-gx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751135Ab1HUIoj (ORCPT ); Sun, 21 Aug 2011 04:44:39 -0400 Subject: [PATCH] Input: tnetv107x-ts - add missing include of linux/module.h From: Axel Lin To: linux-kernel@vger.kernel.org Cc: Dmitry Torokhov , Cyril Chemparathy , linux-input@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Date: Sun, 21 Aug 2011 16:44:29 +0800 Message-ID: <1313916269.17491.0.camel@phoenix> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tnetv107x-ts.c uses interfaces from linux/module.h, so it should include that file. This patch fixes build errors. Signed-off-by: Axel Lin --- drivers/input/touchscreen/tnetv107x-ts.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c index 089b0a0..0e8f63e 100644 --- a/drivers/input/touchscreen/tnetv107x-ts.c +++ b/drivers/input/touchscreen/tnetv107x-ts.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include #include #include #include -- 1.7.4.1