public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: "C.A, Subramaniam" <subramaniam.ca@ti.com>
Cc: "linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	"Gupta, Ramesh" <grgupta@ti.com>,
	"Kanigeri, Hari" <h-kanigeri2@ti.com>,
	Hiroshi DOYU <Hiroshi.DOYU@Nokia.com>
Subject: Re: [PATCH 7/10] omap mailbox: expose omap_mbox_enable()/disable_irq()
Date: Fri, 13 Nov 2009 16:40:04 -0800	[thread overview]
Message-ID: <20091114004004.GG3684@atomide.com> (raw)
In-Reply-To: <B85A65D85D7EB246BE421B3FB0FBB59301DE4C4998@dbde02.ent.ti.com>

* C.A, Subramaniam <subramaniam.ca@ti.com> [091113 04:32]:
> From 177e2efb7384c03ac445b55e2e4ccf44e2160051 Mon Sep 17 00:00:00 2001
> From: C A Subramaniam <subramaniam.ca@ti.com>
> 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@nokia.com>

Is this missing a Signed-off-by: C A Subramaniam <subramaniam.ca@ti.com>,
or should this be From: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>?

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

  reply	other threads:[~2009-11-14  0:40 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-13 12:33 [PATCH 7/10] omap mailbox: expose omap_mbox_enable()/disable_irq() C.A, Subramaniam
2009-11-14  0:40 ` Tony Lindgren [this message]
2009-11-17 13:07   ` C.A, Subramaniam
2009-11-17 16:58     ` Tony Lindgren
  -- strict thread matches above, loose matches on Subject: below --
2009-09-22 14:32 C.A, Subramaniam
2009-09-04 11:48 C.A, Subramaniam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20091114004004.GG3684@atomide.com \
    --to=tony@atomide.com \
    --cc=Hiroshi.DOYU@Nokia.com \
    --cc=grgupta@ti.com \
    --cc=h-kanigeri2@ti.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=subramaniam.ca@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox