From patchwork Tue Mar 26 13:33:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 2336811 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 59B583FD40 for ; Tue, 26 Mar 2013 13:35:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934363Ab3CZNez (ORCPT ); Tue, 26 Mar 2013 09:34:55 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:35063 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934241Ab3CZNew (ORCPT ); Tue, 26 Mar 2013 09:34:52 -0400 Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id r2QDYq5u015709; Tue, 26 Mar 2013 08:34:52 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id r2QDYqZI015616; Tue, 26 Mar 2013 08:34:52 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.2.342.3; Tue, 26 Mar 2013 08:34:51 -0500 Received: from deskari.tieu.ti.com (h64-3.vpn.ti.com [172.24.64.3]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r2QDYUc7025381; Tue, 26 Mar 2013 08:34:51 -0500 From: Tomi Valkeinen To: , , Archit Taneja CC: Tomi Valkeinen Subject: [PATCH 15/26] OMAPDSS: TFP410 platform_data changes Date: Tue, 26 Mar 2013 15:33:45 +0200 Message-ID: <1364304836-18134-16-git-send-email-tomi.valkeinen@ti.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1364304836-18134-1-git-send-email-tomi.valkeinen@ti.com> References: <1364304836-18134-1-git-send-email-tomi.valkeinen@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 forthcoming omap_dss_device to platform_device conversion requires a few new fields to the TFP410 platform data. Add the platform data fields here so that we can make the board file changes independently of the panel driver changes. Signed-off-by: Tomi Valkeinen --- include/video/omap-panel-tfp410.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/video/omap-panel-tfp410.h b/include/video/omap-panel-tfp410.h index aef35e4..cb37c87 100644 --- a/include/video/omap-panel-tfp410.h +++ b/include/video/omap-panel-tfp410.h @@ -24,12 +24,17 @@ struct omap_dss_device; /** * struct tfp410_platform_data - panel driver configuration data + * @name: name for this output + * @source: name for the video source * @i2c_bus_num: i2c bus id for the panel * @power_down_gpio: gpio number for PD pin (or -1 if not available) */ struct tfp410_platform_data { + const char *name; + const char *source; int i2c_bus_num; int power_down_gpio; + int data_lines; }; #endif /* __OMAP_PANEL_TFP410_H */