Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754762AbaB0FyM (ORCPT ); Thu, 27 Feb 2014 00:54:12 -0500 Received: from hqemgate14.nvidia.com ([216.228.121.143]:15089 "EHLO hqemgate14.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751680AbaB0FyF (ORCPT ); Thu, 27 Feb 2014 00:54:05 -0500 X-PGP-Universal: processed; by hqnvupgp08.nvidia.com on Wed, 26 Feb 2014 21:51:24 -0800 From: Alexandre Courbot To: Thierry Reding , Jingoo Han , Bryan Wu , Ben Dooks , Kukjin Kim CC: , , , Alexandre Courbot Subject: [PATCH 1/2] ARM: SAMSUNG: remove gpio flags in dev-backlight Date: Thu, 27 Feb 2014 14:53:33 +0900 Message-ID: <1393480414-19473-2-git-send-email-acourbot@nvidia.com> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1393480414-19473-1-git-send-email-acourbot@nvidia.com> References: <1393480414-19473-1-git-send-email-acourbot@nvidia.com> X-NVConfidentiality: public MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The pwm-backlight driver is moving to use the gpiod interface, which has its own mapping mechanism for platform data GPIOs. These mappings carry GPIO properties like active low so they don't have to be explicitly handled by GPIO consumers. Because of this change, the enable_gpio_flags member of platform_pwm_backlight_data is going away. dev-backlight was passing this member, but had no user making use of it, so it can safely be removed. Further GPIOs used by pwm-backlight are expected to be defined using the mechanisms provided by the gpiod API. Signed-off-by: Alexandre Courbot --- arch/arm/plat-samsung/dev-backlight.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/plat-samsung/dev-backlight.c b/arch/arm/plat-samsung/dev-backlight.c index be4ad0b21c08..2157c5b539e6 100644 --- a/arch/arm/plat-samsung/dev-backlight.c +++ b/arch/arm/plat-samsung/dev-backlight.c @@ -124,8 +124,6 @@ void __init samsung_bl_set(struct samsung_bl_gpio_info *gpio_info, samsung_bl_data->pwm_period_ns = bl_data->pwm_period_ns; if (bl_data->enable_gpio >= 0) samsung_bl_data->enable_gpio = bl_data->enable_gpio; - if (bl_data->enable_gpio_flags) - samsung_bl_data->enable_gpio_flags = bl_data->enable_gpio_flags; if (bl_data->init) samsung_bl_data->init = bl_data->init; if (bl_data->notify) -- 1.9.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/