From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tushar Behera Subject: [PATCH] leds: s3c24xx: Fix build failure Date: Mon, 30 Dec 2013 14:39:55 +0530 Message-ID: <1388394595-1347-1-git-send-email-tushar.behera@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from mail-pd0-f177.google.com ([209.85.192.177]:35694 "EHLO mail-pd0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751703Ab3L3JNd (ORCPT ); Mon, 30 Dec 2013 04:13:33 -0500 Received: by mail-pd0-f177.google.com with SMTP id q10so11092268pdj.36 for ; Mon, 30 Dec 2013 01:13:33 -0800 (PST) Sender: linux-leds-owner@vger.kernel.org List-Id: linux-leds@vger.kernel.org To: linux-kernel@vger.kernel.org, linux-leds@vger.kernel.org Cc: rpurdie@rpsys.net, cooloney@gmail.com =46ixes following build error. drivers/leds/leds-s3c24xx.c: In function =E2=80=98s3c24xx_led_probe=E2=80= =99: drivers/leds/leds-s3c24xx.c:100:2: error: implicit declaration of function =E2=80=98s3c_gpio_setpull=E2=80=99 [-Werror=3Dimplicit-functio= n-declaration] Signed-off-by: Tushar Behera --- Tested at next-20131224. drivers/leds/leds-s3c24xx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/leds/leds-s3c24xx.c b/drivers/leds/leds-s3c24xx.c index 76483fb..87cf215 100644 --- a/drivers/leds/leds-s3c24xx.c +++ b/drivers/leds/leds-s3c24xx.c @@ -21,6 +21,7 @@ =20 #include #include +#include #include =20 /* our context */ --=20 1.7.9.5