2009-03-11 00:48:48

by Thomas Gleixner

[permalink] [raw]
Subject: [patch 07/18] mips: convert obsolete irq_desc_t to struct irq_desc

Impact: cleanup

Convert the last remaining users to struct irq_desc.

Signed-off-by: Thomas Gleixner <[email protected]>
CC: Ralf Baechle <[email protected]>

---
arch/mips/cavium-octeon/octeon-irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/arch/mips/cavium-octeon/octeon-irq.c
===================================================================
--- linux-2.6.orig/arch/mips/cavium-octeon/octeon-irq.c
+++ linux-2.6/arch/mips/cavium-octeon/octeon-irq.c
@@ -31,7 +31,7 @@ static void octeon_irq_core_ack(unsigned

static void octeon_irq_core_eoi(unsigned int irq)
{
- irq_desc_t *desc = irq_desc + irq;
+ struct irq_desc *desc = irq_desc + irq;
unsigned int bit = irq - OCTEON_IRQ_SW0;
/*
* If an IRQ is being processed while we are disabling it the


2009-03-11 16:02:45

by David Daney

[permalink] [raw]
Subject: Re: [patch 07/18] mips: convert obsolete irq_desc_t to struct irq_desc

Thomas Gleixner wrote:
> Impact: cleanup
>
> Convert the last remaining users to struct irq_desc.
>
> Signed-off-by: Thomas Gleixner <[email protected]>
> CC: Ralf Baechle <[email protected]>

Signed-off-by: David Daney <[email protected]>

My boards still boot with this patch.

Thanks,
David Daney

>
> ---
> arch/mips/cavium-octeon/octeon-irq.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-2.6/arch/mips/cavium-octeon/octeon-irq.c
> ===================================================================
> --- linux-2.6.orig/arch/mips/cavium-octeon/octeon-irq.c
> +++ linux-2.6/arch/mips/cavium-octeon/octeon-irq.c
> @@ -31,7 +31,7 @@ static void octeon_irq_core_ack(unsigned
>
> static void octeon_irq_core_eoi(unsigned int irq)
> {
> - irq_desc_t *desc = irq_desc + irq;
> + struct irq_desc *desc = irq_desc + irq;
> unsigned int bit = irq - OCTEON_IRQ_SW0;
> /*
> * If an IRQ is being processed while we are disabling it the
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>

2009-03-11 17:32:17

by Ralf Baechle

[permalink] [raw]
Subject: Re: [patch 07/18] mips: convert obsolete irq_desc_t to struct irq_desc

On Wed, Mar 11, 2009 at 12:45:51AM -0000, Thomas Gleixner wrote:

Thanks, queued for 2.6.30.

Ralf