* C.A, Subramaniam <subramaniam.ca@xxxxxx> [091117 05:06]: > > -----Original Message----- > > From: Tony Lindgren [mailto:tony@xxxxxxxxxxx] > > Sent: Saturday, November 14, 2009 6:10 AM > > To: C.A, Subramaniam > > Cc: linux-omap@xxxxxxxxxxxxxxx; Gupta, Ramesh; Kanigeri, > > Hari; Hiroshi DOYU > > Subject: Re: [PATCH 7/10] omap mailbox: expose > > omap_mbox_enable()/disable_irq() > > > > * C.A, Subramaniam <subramaniam.ca@xxxxxx> [091113 04:32]: > > > From 177e2efb7384c03ac445b55e2e4ccf44e2160051 Mon Sep 17 > > 00:00:00 2001 > > > From: C A Subramaniam <subramaniam.ca@xxxxxx> > > > Date: Fri, 13 Nov 2009 15:04:57 +0530 > > > Subject: [PATCH 7/10] omap mailbox: expose > > > omap_mbox_enable()/disable_irq() > > > > > > Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@xxxxxxxxx> > > > > Is this missing a Signed-off-by: C A Subramaniam > > <subramaniam.ca@xxxxxx>, or should this be From: Hiroshi DOYU > > <Hiroshi.DOYU@xxxxxxxxx>? > > > Hi Tony, > The patch is given by Hiroshi. Since it was sent as part of the OMAP4 > Mailbox patch series the From has C A Subramaniam <subramaniam.ca@xxxxxx> OK, I'll change the From: field to be from Hiroshi then. Regards, Tony > > Regards, > > > > Tony > > > > > --- > > > arch/arm/plat-omap/include/plat/mailbox.h | 12 ++++++++++++ > > > arch/arm/plat-omap/mailbox.c | 12 ++---------- > > > 2 files changed, 14 insertions(+), 10 deletions(-) > > > > > > diff --git a/arch/arm/plat-omap/include/plat/mailbox.h > > > b/arch/arm/plat-omap/include/plat/mailbox.h > > > index 8260a3f..bf06953 100644 > > > --- a/arch/arm/plat-omap/include/plat/mailbox.h > > > +++ b/arch/arm/plat-omap/include/plat/mailbox.h > > > @@ -92,4 +92,16 @@ static inline void > > omap_mbox_restore_ctx(struct omap_mbox *mbox) > > > mbox->ops->restore_ctx(mbox); > > > } > > > > > > +static inline void omap_mbox_enable_irq(struct omap_mbox *mbox, > > > + omap_mbox_irq_t irq) > > > +{ > > > + mbox->ops->enable_irq(mbox, irq); > > > +} > > > + > > > +static inline void omap_mbox_disable_irq(struct omap_mbox *mbox, > > > + omap_mbox_irq_t irq) > > > +{ > > > + mbox->ops->disable_irq(mbox, irq); > > > +} > > > + > > > #endif /* MAILBOX_H */ > > > diff --git a/arch/arm/plat-omap/mailbox.c > > > b/arch/arm/plat-omap/mailbox.c index eb76df2..d5377a3 100644 > > > --- a/arch/arm/plat-omap/mailbox.c > > > +++ b/arch/arm/plat-omap/mailbox.c > > > @@ -50,14 +50,6 @@ static inline int mbox_fifo_full(struct > > omap_mbox > > > *mbox) } > > > > > > /* Mailbox IRQ handle functions */ > > > -static inline void enable_mbox_irq(struct omap_mbox *mbox, > > > omap_mbox_irq_t irq) -{ > > > - mbox->ops->enable_irq(mbox, irq); > > > -} > > > -static inline void disable_mbox_irq(struct omap_mbox *mbox, > > > omap_mbox_irq_t irq) -{ > > > - mbox->ops->disable_irq(mbox, irq); > > > -} > > > static inline void ack_mbox_irq(struct omap_mbox *mbox, > > > omap_mbox_irq_t irq) { > > > if (mbox->ops->ack_irq) > > > @@ -144,7 +136,7 @@ static void mbox_tx_work(struct > > work_struct *work) > > > > > > ret = __mbox_msg_send(mbox, tx_data->msg); > > > if (ret) { > > > - enable_mbox_irq(mbox, IRQ_TX); > > > + omap_mbox_enable_irq(mbox, IRQ_TX); > > > spin_lock(q->queue_lock); > > > blk_requeue_request(q, rq); > > > spin_unlock(q->queue_lock); > > > @@ -196,7 +188,7 @@ static void mbox_rxq_fn(struct request_queue *q) > > > > > > static void __mbox_tx_interrupt(struct omap_mbox *mbox) { > > > - disable_mbox_irq(mbox, IRQ_TX); > > > + omap_mbox_disable_irq(mbox, IRQ_TX); > > > ack_mbox_irq(mbox, IRQ_TX); > > > schedule_work(&mbox->txq->work); > > > } > > > -- > > > 1.5.3.2 > > > > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html