From mboxrd@z Thu Jan 1 00:00:00 1970 From: robert.jarzmik@free.fr (Robert Jarzmik) Date: Mon, 05 Mar 2012 23:08:52 +0100 Subject: Status of gpio-pxa driver and dummy clock In-Reply-To: (Haojian Zhuang's message of "Mon, 5 Mar 2012 20:22:41 +0800") References: <87aa3wu0hp.fsf@free.fr> <1330885571.28077.YahooMailClassic@web29015.mail.ird.yahoo.com> Message-ID: <87399mu2dn.fsf@free.fr> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Haojian Zhuang writes: > I missed them. Maybe I was not in the Cc list. I'll append the patches > to fix them. Just to be sure, this is the patch which is missing for the dummy clock, which was not submitted before AFAIK (Jonathan, Paul, please confirm). I added the commit text to Paul's patch, and authored it as Paul's with Jonathan's report. Again, Jonathan, Paul, I'd like to have your agreement here. Haojian, if you have another patch ready, don't hesitate to drop this patch and take your own, as long as gpio-pxa is fixed, I'll be happy. Cheers. -- Robert 8>---- >>From 505a23475843a8fbac077e789d911ee07e1ae9cc Mon Sep 17 00:00:00 2001 From: Paul Parsons Date: Sat, 3 Mar 2012 21:10:09 +0100 Subject: [PATCH] arch/arm: pxa add dummy clocks for gpio driver Fix gpio driver by providing it a dummy clock. This regression was introduced by the commit "ARM: pxa: add dummy clock for sa1100-rtc", id a55b5adaf403c4d032e0871ad4ee3367782f4db6. Reported-by: Jonathan Cameron Signed-off-by: Paul Parsons Tested-by: Robert Jarzmik --- arch/arm/mach-pxa/pxa25x.c | 1 + arch/arm/mach-pxa/pxa27x.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 00d6eac..d8de3e5 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -208,6 +208,7 @@ static struct clk_lookup pxa25x_clkregs[] = { INIT_CLKREG(&clk_pxa25x_gpio11, NULL, "GPIO11_CLK"), INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"), INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), + INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), }; static struct clk_lookup pxa25x_hwuart_clkreg = diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index c1673b3..a3fabc9 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c @@ -229,6 +229,7 @@ static struct clk_lookup pxa27x_clkregs[] = { INIT_CLKREG(&clk_pxa27x_im, NULL, "IMCLK"), INIT_CLKREG(&clk_pxa27x_memc, NULL, "MEMCLK"), INIT_CLKREG(&clk_pxa27x_mem, "pxa2xx-pcmcia", NULL), + INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), }; #ifdef CONFIG_PM -- 1.7.5.4