linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] gemini fix for 2.6.33-rc8
@ 2010-02-18 21:11 Paulius Zaleckas
  2010-02-18 21:11 ` [PATCH 1/2] Gemini: wrong registers used to set reg_level in gpio_set_irq_type() Paulius Zaleckas
  2010-02-18 21:11 ` [PATCH 2/2] MAINTAINERS: fix my e-mail and status for Gemini and FA526 Paulius Zaleckas
  0 siblings, 2 replies; 3+ messages in thread
From: Paulius Zaleckas @ 2010-02-18 21:11 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Russell,

Please pull these changes for rc. I am sending patches also for comments
if any.

The following changes since commit 83c5aac175e182c30729650f2edee3294c3b8bb0:
  Linus Torvalds (1):
        Merge branch 'for-linus' of git://git.kernel.org/.../dtor/input

are available in the git repository at:

  git://gitorious.org/linux-gemini/mainline.git for-rmk

Paulius Zaleckas (1):
      MAINTAINERS: fix my e-mail and status for Gemini and FA526

Roel Kluin (1):
      Gemini: wrong registers used to set reg_level in gpio_set_irq_type()

 MAINTAINERS                 |    8 ++++----
 arch/arm/mach-gemini/gpio.c |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] Gemini: wrong registers used to set reg_level in gpio_set_irq_type()
  2010-02-18 21:11 [GIT PULL] gemini fix for 2.6.33-rc8 Paulius Zaleckas
@ 2010-02-18 21:11 ` Paulius Zaleckas
  2010-02-18 21:11 ` [PATCH 2/2] MAINTAINERS: fix my e-mail and status for Gemini and FA526 Paulius Zaleckas
  1 sibling, 0 replies; 3+ messages in thread
From: Paulius Zaleckas @ 2010-02-18 21:11 UTC (permalink / raw)
  To: linux-arm-kernel

From: Roel Kluin <roel.kluin@gmail.com>

It appears the wrong GPIO registers were used

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
---

 arch/arm/mach-gemini/gpio.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-gemini/gpio.c b/arch/arm/mach-gemini/gpio.c
index e726385..fe3bd5a 100644
--- a/arch/arm/mach-gemini/gpio.c
+++ b/arch/arm/mach-gemini/gpio.c
@@ -86,7 +86,7 @@ static int gpio_set_irq_type(unsigned int irq, unsigned int type)
 	unsigned int reg_both, reg_level, reg_type;
 
 	reg_type = __raw_readl(base + GPIO_INT_TYPE);
-	reg_level = __raw_readl(base + GPIO_INT_BOTH_EDGE);
+	reg_level = __raw_readl(base + GPIO_INT_LEVEL);
 	reg_both = __raw_readl(base + GPIO_INT_BOTH_EDGE);
 
 	switch (type) {
@@ -117,7 +117,7 @@ static int gpio_set_irq_type(unsigned int irq, unsigned int type)
 	}
 
 	__raw_writel(reg_type, base + GPIO_INT_TYPE);
-	__raw_writel(reg_level, base + GPIO_INT_BOTH_EDGE);
+	__raw_writel(reg_level, base + GPIO_INT_LEVEL);
 	__raw_writel(reg_both, base + GPIO_INT_BOTH_EDGE);
 
 	gpio_ack_irq(irq);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] MAINTAINERS: fix my e-mail and status for Gemini and FA526
  2010-02-18 21:11 [GIT PULL] gemini fix for 2.6.33-rc8 Paulius Zaleckas
  2010-02-18 21:11 ` [PATCH 1/2] Gemini: wrong registers used to set reg_level in gpio_set_irq_type() Paulius Zaleckas
@ 2010-02-18 21:11 ` Paulius Zaleckas
  1 sibling, 0 replies; 3+ messages in thread
From: Paulius Zaleckas @ 2010-02-18 21:11 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
---

 MAINTAINERS |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 412eff6..44c669d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -616,10 +616,10 @@ M:	Richard Purdie <rpurdie@rpsys.net>
 S:	Maintained
 
 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
-M:	Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
+M:	Paulius Zaleckas <paulius.zaleckas@gmail.com>
 L:	linux-arm-kernel at lists.infradead.org (moderated for non-subscribers)
 T:	git git://gitorious.org/linux-gemini/mainline.git
-S:	Maintained
+S:	Odd Fixes
 F:	arch/arm/mach-gemini/
 
 ARM/EBSA110 MACHINE SUPPORT
@@ -641,9 +641,9 @@ T:	topgit git://git.openezx.org/openezx.git
 F:	arch/arm/mach-pxa/ezx.c
 
 ARM/FARADAY FA526 PORT
-M:	Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
+M:	Paulius Zaleckas <paulius.zaleckas@gmail.com>
 L:	linux-arm-kernel at lists.infradead.org (moderated for non-subscribers)
-S:	Maintained
+S:	Odd Fixes
 F:	arch/arm/mm/*-fa*
 
 ARM/FOOTBRIDGE ARCHITECTURE

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-18 21:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-18 21:11 [GIT PULL] gemini fix for 2.6.33-rc8 Paulius Zaleckas
2010-02-18 21:11 ` [PATCH 1/2] Gemini: wrong registers used to set reg_level in gpio_set_irq_type() Paulius Zaleckas
2010-02-18 21:11 ` [PATCH 2/2] MAINTAINERS: fix my e-mail and status for Gemini and FA526 Paulius Zaleckas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).