From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754086Ab2BDQUg (ORCPT ); Sat, 4 Feb 2012 11:20:36 -0500 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:34855 "EHLO opensource.wolfsonmicro.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753855Ab2BDQUQ (ORCPT ); Sat, 4 Feb 2012 11:20:16 -0500 From: Mark Brown To: Andrew Morton , Richard Purdie Cc: linux-kernel@vger.kernel.org, Mark Brown Subject: [PATCH] leds: Use linux/gpio.h rather than asm/gpio.h Date: Sat, 4 Feb 2012 16:20:09 +0000 Message-Id: <1328372409-28089-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.9.rc1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Direct usage of the asm include has long been deprecated by the introduction of gpiolib. Signed-off-by: Mark Brown --- drivers/leds/leds-gpio.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index 7df74cb..f4c470a 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -20,8 +21,6 @@ #include #include -#include - struct gpio_led_data { struct led_classdev cdev; unsigned gpio; -- 1.7.9.rc1