diff mbox

[RFT/RFC/PATCH,00/31] arm: omap: irq: cleanup INTC driver

Message ID 52C6A939.70708@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Rajendra Nayak Jan. 3, 2014, 12:12 p.m. UTC
[]..

>>> so a bit more work is needed. Maybe also rebase these against
>>> omap-for-v3.14/dt too?
>>
>> Will do.
> 
> Rebased on top of omap-for-v3.14/omap3-board-removal. Patches are on my
> k.org tree:
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git wip/omap-fix-intc

It needs a minor build fix though..


regards,
Rajendra

> 
> cheers
> 
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Felipe Balbi Jan. 3, 2014, 4:40 p.m. UTC | #1
On Fri, Jan 03, 2014 at 05:42:41PM +0530, Rajendra Nayak wrote:
> []..
> 
> >>> so a bit more work is needed. Maybe also rebase these against
> >>> omap-for-v3.14/dt too?
> >>
> >> Will do.
> > 
> > Rebased on top of omap-for-v3.14/omap3-board-removal. Patches are on my
> > k.org tree:
> > 
> > git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git wip/omap-fix-intc
> 
> It needs a minor build fix though..
> 
> diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
> index b58c5d5..d03b5a3 100644
> --- a/drivers/irqchip/irq-omap-intc.c
> +++ b/drivers/irqchip/irq-omap-intc.c
> @@ -151,7 +151,7 @@ static void omap_mask_ack_irq(struct irq_data *d)
>  static void omap_suspend_irq(struct irq_data *d)
>  {
>         omap_intc_save_context();
> -       omap3_intc_prepare_idle();
> +       omap_intc_prepare_idle();

fixed now, thanks. Wonder how come I didn't see that, I was building
every commit with omap2plus_defconfig :-( Oh well...
Tony Lindgren July 15, 2014, 9:14 a.m. UTC | #2
* Felipe Balbi <balbi@ti.com> [140103 08:43]:
> On Fri, Jan 03, 2014 at 05:42:41PM +0530, Rajendra Nayak wrote:
> > []..
> > 
> > >>> so a bit more work is needed. Maybe also rebase these against
> > >>> omap-for-v3.14/dt too?
> > >>
> > >> Will do.
> > > 
> > > Rebased on top of omap-for-v3.14/omap3-board-removal. Patches are on my
> > > k.org tree:
> > > 
> > > git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git wip/omap-fix-intc
> > 
> > It needs a minor build fix though..
> > 
> > diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
> > index b58c5d5..d03b5a3 100644
> > --- a/drivers/irqchip/irq-omap-intc.c
> > +++ b/drivers/irqchip/irq-omap-intc.c
> > @@ -151,7 +151,7 @@ static void omap_mask_ack_irq(struct irq_data *d)
> >  static void omap_suspend_irq(struct irq_data *d)
> >  {
> >         omap_intc_save_context();
> > -       omap3_intc_prepare_idle();
> > +       omap_intc_prepare_idle();
> 
> fixed now, thanks. Wonder how come I didn't see that, I was building
> every commit with omap2plus_defconfig :-( Oh well...

Felipe, care to refresh this series against v3.16-rc4 and
repost? We now finally have the DT based booting working for
PM for omap3 the same way as legacy booting so I can test
this easily for regressions. But I don't seem to have the
patches in my mailbox any longer.

Regards,

Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Felipe Balbi July 15, 2014, 7:56 p.m. UTC | #3
On Tue, Jul 15, 2014 at 02:14:35AM -0700, Tony Lindgren wrote:
> * Felipe Balbi <balbi@ti.com> [140103 08:43]:
> > On Fri, Jan 03, 2014 at 05:42:41PM +0530, Rajendra Nayak wrote:
> > > []..
> > > 
> > > >>> so a bit more work is needed. Maybe also rebase these against
> > > >>> omap-for-v3.14/dt too?
> > > >>
> > > >> Will do.
> > > > 
> > > > Rebased on top of omap-for-v3.14/omap3-board-removal. Patches are on my
> > > > k.org tree:
> > > > 
> > > > git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git wip/omap-fix-intc
> > > 
> > > It needs a minor build fix though..
> > > 
> > > diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
> > > index b58c5d5..d03b5a3 100644
> > > --- a/drivers/irqchip/irq-omap-intc.c
> > > +++ b/drivers/irqchip/irq-omap-intc.c
> > > @@ -151,7 +151,7 @@ static void omap_mask_ack_irq(struct irq_data *d)
> > >  static void omap_suspend_irq(struct irq_data *d)
> > >  {
> > >         omap_intc_save_context();
> > > -       omap3_intc_prepare_idle();
> > > +       omap_intc_prepare_idle();
> > 
> > fixed now, thanks. Wonder how come I didn't see that, I was building
> > every commit with omap2plus_defconfig :-( Oh well...
> 
> Felipe, care to refresh this series against v3.16-rc4 and
> repost? We now finally have the DT based booting working for
> PM for omap3 the same way as legacy booting so I can test
> this easily for regressions. But I don't seem to have the
> patches in my mailbox any longer.

not sure when I'll have time to work on this again, but I'll add it to
my TODO list.
diff mbox

Patch

diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
index b58c5d5..d03b5a3 100644
--- a/drivers/irqchip/irq-omap-intc.c
+++ b/drivers/irqchip/irq-omap-intc.c
@@ -151,7 +151,7 @@  static void omap_mask_ack_irq(struct irq_data *d)
 static void omap_suspend_irq(struct irq_data *d)
 {
        omap_intc_save_context();
-       omap3_intc_prepare_idle();
+       omap_intc_prepare_idle();
 
        /* A pending interrupt would prevent OMAP from entering suspend */
        omap_ack_irq(NULL);