From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tomasz Stanislawski Subject: Re: [PATCH v1 01/14] media: s5p-hdmi: add HPD GPIO to platform data Date: Fri, 05 Oct 2012 11:40:43 +0200 Message-ID: <506EAB1B.4070701@samsung.com> References: <1349363936-8531-1-git-send-email-rahul.sharma@samsung.com> <1349363936-8531-2-git-send-email-rahul.sharma@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mailout4.w1.samsung.com (mailout4.w1.samsung.com [210.118.77.14]) by gabe.freedesktop.org (Postfix) with ESMTP id 4810B9F50E for ; Fri, 5 Oct 2012 02:40:48 -0700 (PDT) Received: from eusync2.samsung.com (mailout4.w1.samsung.com [210.118.77.14]) by mailout4.w1.samsung.com (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTP id <0MBE008K7YWVPD10@mailout4.w1.samsung.com> for dri-devel@lists.freedesktop.org; Fri, 05 Oct 2012 10:41:19 +0100 (BST) Received: from [106.116.147.108] by eusync2.samsung.com (Oracle Communications Messaging Server 7u4-23.01(7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTPA id <0MBE005PFYVWFR30@eusync2.samsung.com> for dri-devel@lists.freedesktop.org; Fri, 05 Oct 2012 10:40:45 +0100 (BST) In-reply-to: <1349363936-8531-2-git-send-email-rahul.sharma@samsung.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org Errors-To: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org To: Rahul Sharma Cc: s.shirish@samsung.com, l.krishna@samsung.com, joshi@samsung.com, dri-devel@lists.freedesktop.org, kyungmin.park@samsung.com, fahad.k@samsung.com, prashanth.g@samsung.com List-Id: dri-devel@lists.freedesktop.org Hi Rahul Sharma, On 10/04/2012 05:18 PM, Rahul Sharma wrote: > From: Tomasz Stanislawski > > This patch extends s5p-hdmi platform data by a GPIO identifier for > Hot-Plug-Detection pin. > > Signed-off-by: Tomasz Stanislawski > Signed-off-by: Kyungmin Park Acked-by: Tomasz Stanislawski Regards, Tomasz Stanislawski > --- > include/media/s5p_hdmi.h | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/include/media/s5p_hdmi.h b/include/media/s5p_hdmi.h > index 361a751..181642b 100644 > --- a/include/media/s5p_hdmi.h > +++ b/include/media/s5p_hdmi.h > @@ -20,6 +20,7 @@ struct i2c_board_info; > * @hdmiphy_info: template for HDMIPHY I2C device > * @mhl_bus: controller id for MHL control bus > * @mhl_info: template for MHL I2C device > + * @hpd_gpio: GPIO for Hot-Plug-Detect pin > * > * NULL pointer for *_info fields indicates that > * the corresponding chip is not present > @@ -29,6 +30,7 @@ struct s5p_hdmi_platform_data { > struct i2c_board_info *hdmiphy_info; > int mhl_bus; > struct i2c_board_info *mhl_info; > + int hpd_gpio; > }; > > #endif /* S5P_HDMI_H */ >