From patchwork Wed Feb 13 14:22:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: archit taneja X-Patchwork-Id: 2136761 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 34A203FCF6 for ; Wed, 13 Feb 2013 14:24:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934095Ab3BMOYC (ORCPT ); Wed, 13 Feb 2013 09:24:02 -0500 Received: from devils.ext.ti.com ([198.47.26.153]:56544 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757028Ab3BMOX7 (ORCPT ); Wed, 13 Feb 2013 09:23:59 -0500 Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id r1DENx8I027163; Wed, 13 Feb 2013 08:23:59 -0600 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id r1DENxSt009472; Wed, 13 Feb 2013 08:23:59 -0600 Received: from dlelxv24.itg.ti.com (172.17.1.199) by dfle73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.1.323.3; Wed, 13 Feb 2013 08:23:58 -0600 Received: from legion.dal.design.ti.com (legion.dal.design.ti.com [128.247.22.53]) by dlelxv24.itg.ti.com (8.13.8/8.13.8) with ESMTP id r1DENw1N025717; Wed, 13 Feb 2013 08:23:58 -0600 Received: from localhost (a0393947pc.apr.dhcp.ti.com [172.24.137.46]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id r1DENvV16243; Wed, 13 Feb 2013 08:23:57 -0600 (CST) From: Archit Taneja To: CC: , , Archit Taneja Subject: [PATCH 15/33] OMAPDSS: sharp-ls panel: remove platform_enable/disable callbacks Date: Wed, 13 Feb 2013 19:52:07 +0530 Message-ID: <1360765345-19312-16-git-send-email-archit@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1360765345-19312-1-git-send-email-archit@ti.com> References: <1360765345-19312-1-git-send-email-archit@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org The sharp-ls panel driver now manages the gpios required to configure the panel. This was previously done in omap_dss_device's platform_enable/disable callbacks defined in board files using this panel. All the board files using this panel now pass the gpio information as platform data via the panel_sharp_ls037v7dw01_data struct, which is needed by the panel driver to configure the gpios connected to the panel. Hence, the platform_enable/disable ops can be safely removed now. Signed-off-by: Archit Taneja --- .../video/omap2/displays/panel-sharp-ls037v7dw01.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/drivers/video/omap2/displays/panel-sharp-ls037v7dw01.c b/drivers/video/omap2/displays/panel-sharp-ls037v7dw01.c index e6d9c9b..74cb0eb 100644 --- a/drivers/video/omap2/displays/panel-sharp-ls037v7dw01.c +++ b/drivers/video/omap2/displays/panel-sharp-ls037v7dw01.c @@ -125,12 +125,6 @@ static int sharp_ls_power_on(struct omap_dss_device *dssdev) /* wait couple of vsyncs until enabling the LCD */ msleep(50); - if (dssdev->platform_enable) { - r = dssdev->platform_enable(dssdev); - if (r) - goto err1; - } - if (gpio_is_valid(pd->resb_gpio)) gpio_set_value_cansleep(pd->resb_gpio, 1); @@ -138,8 +132,6 @@ static int sharp_ls_power_on(struct omap_dss_device *dssdev) gpio_set_value_cansleep(pd->ini_gpio, 1); return 0; -err1: - omapdss_dpi_display_disable(dssdev); err0: return r; } @@ -157,9 +149,6 @@ static void sharp_ls_power_off(struct omap_dss_device *dssdev) if (gpio_is_valid(pd->resb_gpio)) gpio_set_value_cansleep(pd->resb_gpio, 0); - if (dssdev->platform_disable) - dssdev->platform_disable(dssdev); - /* wait at least 5 vsyncs after disabling the LCD */ msleep(100);