From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757214AbcBJJqQ (ORCPT ); Wed, 10 Feb 2016 04:46:16 -0500 Received: from mail-pa0-f41.google.com ([209.85.220.41]:33279 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752252AbcBJJqN (ORCPT ); Wed, 10 Feb 2016 04:46:13 -0500 From: Sudip Mukherjee To: Dmitry Torokhov , Sanchayan Maity Cc: linux-kernel@vger.kernel.org, kernel-testers@vger.kernel.org, linux-input@vger.kernel.org, Sudip Mukherjee , Geert Uytterhoeven Subject: [PATCH] Input: colibri-vf50-ts: fix implicit declaration Date: Wed, 10 Feb 2016 15:15:47 +0530 Message-Id: <1455097547-31053-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 m32r allmodconfig fails with the error: drivers/input/touchscreen/colibri-vf50-ts.c:302:10: error: implicit declaration of function 'of_property_read_u32' of_property_read_u32() is defined in linux/of.h which was not included. Fixes: 1261d013daea ("Input: Allow compile test of Goodix and Colibri VF50 if !GPIOLIB") Cc: Geert Uytterhoeven Signed-off-by: Sudip Mukherjee --- drivers/input/touchscreen/colibri-vf50-ts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/touchscreen/colibri-vf50-ts.c b/drivers/input/touchscreen/colibri-vf50-ts.c index 5d4903a..594c096 100644 --- a/drivers/input/touchscreen/colibri-vf50-ts.c +++ b/drivers/input/touchscreen/colibri-vf50-ts.c @@ -25,6 +25,7 @@ #include #include #include +#include #define DRIVER_NAME "colibri-vf50-ts" #define DRV_VERSION "1.0" -- 1.9.1