linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function
@ 2013-06-26  9:27 Uwe Kleine-König
  2013-07-08 15:29 ` Uwe Kleine-König
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2013-06-26  9:27 UTC (permalink / raw)
  To: linux-arm-kernel

The name changed in response to review comments for the nvic irqchip
driver when the original name was already accepted into Russell King's
tree.

Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
---
Hello,

this patch was part of the irqchip patch v4, but I split it out for
being easier to merge in v5. It applies on top of Russell's devel-stable
branch.

Russell: I put it on top of my for-next branch (

	git://git.pengutronix.de/git/ukl/linux.git for-next

) that you merged into your devel-stable some time ago. So assuming
you're fine with the patch, you can just repull or I can put it into
your patch tracker if you prefer it. In the latter case please tell me.

Best regards
Uwe

 arch/arm/kernel/entry-v7m.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/kernel/entry-v7m.S b/arch/arm/kernel/entry-v7m.S
index e00621f..52b2643 100644
--- a/arch/arm/kernel/entry-v7m.S
+++ b/arch/arm/kernel/entry-v7m.S
@@ -49,7 +49,7 @@ __irq_entry:
 	mov	r1, sp
 	stmdb	sp!, {lr}
 	@ routine called with r0 = irq number, r1 = struct pt_regs *
-	bl	nvic_do_IRQ
+	bl	nvic_handle_irq
 
 	pop	{lr}
 	@
-- 
1.8.3.1

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

* [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function
  2013-06-26  9:27 [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function Uwe Kleine-König
@ 2013-07-08 15:29 ` Uwe Kleine-König
  2013-07-30  8:15   ` Uwe Kleine-König
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2013-07-08 15:29 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Russell,

On Wed, Jun 26, 2013 at 11:27:35AM +0200, Uwe Kleine-K?nig wrote:
> The name changed in response to review comments for the nvic irqchip
> driver when the original name was already accepted into Russell King's
> tree.
> 
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> ---
> Hello,
> 
> this patch was part of the irqchip patch v4, but I split it out for
> being easier to merge in v5. It applies on top of Russell's devel-stable
> branch.
> 
> Russell: I put it on top of my for-next branch (
> 
> 	git://git.pengutronix.de/git/ukl/linux.git for-next
> 
> ) that you merged into your devel-stable some time ago. So assuming
> you're fine with the patch, you can just repull or I can put it into
> your patch tracker if you prefer it. In the latter case please tell me.
The mismatch hit Linus' tree now. How should this patch get to him?

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function
  2013-07-08 15:29 ` Uwe Kleine-König
@ 2013-07-30  8:15   ` Uwe Kleine-König
  2013-07-30 10:26     ` Russell King - ARM Linux
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2013-07-30  8:15 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Russell,

On Mon, Jul 08, 2013 at 05:29:17PM +0200, Uwe Kleine-K?nig wrote:
> On Wed, Jun 26, 2013 at 11:27:35AM +0200, Uwe Kleine-K?nig wrote:
> > The name changed in response to review comments for the nvic irqchip
> > driver when the original name was already accepted into Russell King's
> > tree.
> > 
> > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> > ---
> > Hello,
> > 
> > this patch was part of the irqchip patch v4, but I split it out for
> > being easier to merge in v5. It applies on top of Russell's devel-stable
> > branch.
> > 
> > Russell: I put it on top of my for-next branch (
> > 
> > 	git://git.pengutronix.de/git/ukl/linux.git for-next
> > 
> > ) that you merged into your devel-stable some time ago. So assuming
> > you're fine with the patch, you can just repull or I can put it into
> > your patch tracker if you prefer it. In the latter case please tell me.
> The mismatch hit Linus' tree now. How should this patch get to him?
Although it's not critical (as there are no in-tree users) I still think
this should go in before 3.11.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function
  2013-07-30  8:15   ` Uwe Kleine-König
@ 2013-07-30 10:26     ` Russell King - ARM Linux
  0 siblings, 0 replies; 4+ messages in thread
From: Russell King - ARM Linux @ 2013-07-30 10:26 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jul 30, 2013 at 10:15:07AM +0200, Uwe Kleine-K?nig wrote:
> Hi Russell,
> 
> On Mon, Jul 08, 2013 at 05:29:17PM +0200, Uwe Kleine-K?nig wrote:
> > On Wed, Jun 26, 2013 at 11:27:35AM +0200, Uwe Kleine-K?nig wrote:
> > > The name changed in response to review comments for the nvic irqchip
> > > driver when the original name was already accepted into Russell King's
> > > tree.
> > > 
> > > Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> > > ---
> > > Hello,
> > > 
> > > this patch was part of the irqchip patch v4, but I split it out for
> > > being easier to merge in v5. It applies on top of Russell's devel-stable
> > > branch.
> > > 
> > > Russell: I put it on top of my for-next branch (
> > > 
> > > 	git://git.pengutronix.de/git/ukl/linux.git for-next
> > > 
> > > ) that you merged into your devel-stable some time ago. So assuming
> > > you're fine with the patch, you can just repull or I can put it into
> > > your patch tracker if you prefer it. In the latter case please tell me.
> > The mismatch hit Linus' tree now. How should this patch get to him?
> Although it's not critical (as there are no in-tree users) I still think
> this should go in before 3.11.

Can you put it in the patch system please?

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

end of thread, other threads:[~2013-07-30 10:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-26  9:27 [PATCH] ARM: ARMv7-M: Fix name of NVIC handler function Uwe Kleine-König
2013-07-08 15:29 ` Uwe Kleine-König
2013-07-30  8:15   ` Uwe Kleine-König
2013-07-30 10:26     ` Russell King - ARM Linux

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).