From patchwork Thu May 7 08:08:10 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 469332 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 1216514028F for ; Thu, 7 May 2015 18:09:25 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750898AbbEGIJY (ORCPT ); Thu, 7 May 2015 04:09:24 -0400 Received: from andre.telenet-ops.be ([195.130.132.53]:38978 "EHLO andre.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751038AbbEGIIQ (ORCPT ); Thu, 7 May 2015 04:08:16 -0400 Received: from ayla.of.borg ([84.193.93.87]) by andre.telenet-ops.be with bizsmtp id Qw8E1q00G1t5w8s01w8E4m; Thu, 07 May 2015 10:08:14 +0200 Received: from ramsan.of.borg ([192.168.97.29] helo=ramsan) by ayla.of.borg with esmtp (Exim 4.82) (envelope-from ) id 1YqGqq-0000nd-3N; Thu, 07 May 2015 10:08:12 +0200 Received: from geert by ramsan with local (Exim 4.82) (envelope-from ) id 1YqGqq-0001th-NL; Thu, 07 May 2015 10:08:12 +0200 From: Geert Uytterhoeven To: Linus Walleij , Alexandre Courbot , Bryan Wu , Richard Purdie , Arnd Bergmann Cc: Jacek Anaszewski , linux-gpio@vger.kernel.org, linux-leds@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 3/3] leds: leds-gpio: Allow compile test if !GPIOLIB Date: Thu, 7 May 2015 10:08:10 +0200 Message-Id: <1430986090-7243-4-git-send-email-geert@linux-m68k.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1430986090-7243-1-git-send-email-geert@linux-m68k.org> References: <1430986090-7243-1-git-send-email-geert@linux-m68k.org> Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org The GPIO subsystem provides dummy GPIO consumer functions if GPIOLIB is not enabled. Hence drivers that depend on GPIOLIB, but use GPIO consumer functionality only, can still be compiled if GPIOLIB is not enabled. Relax the dependency of LEDS_GPIO on GPIOLIB if COMPILE_TEST is enabled. Signed-off-by: Geert Uytterhoeven Acked-by: Jacek Anaszewski Acked-by: Linus Walleij --- This could be folded in "[PATCH 09/27] leds: Allow compile test of GPIO consumers if !GPIOLIB" once its dependencies are satisfied. --- drivers/leds/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index 8161cddc3f8d597a..1f6cb38335b52c3c 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig @@ -182,7 +182,7 @@ config LEDS_PCA9532_GPIO config LEDS_GPIO tristate "LED Support for GPIO connected LEDs" depends on LEDS_CLASS - depends on GPIOLIB + depends on GPIOLIB || COMPILE_TEST help This option enables support for the LEDs connected to GPIO outputs. To be useful the particular board must have LEDs