public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch v1 1/5] mfd: da9055 change irq state to default
@ 2013-01-18  5:19 Ashish Jangam
  2013-03-01 11:12 ` Ashish Jangam
  0 siblings, 1 reply; 3+ messages in thread
From: Ashish Jangam @ 2013-01-18  5:19 UTC (permalink / raw)
  To: Mark Brown
  Cc: Samuel Ortiz, Axel Lin, Linus Walleij, linux-kernel,
	David Dajun Chen

This patch changes the irq state from high to the now default low
state.

This patch is tested on smdk6410 board.

Signed-off-by: Ashish Jangam <ashish.jangam@kpitcummins.com>
---
 drivers/mfd/da9055-core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mfd/da9055-core.c b/drivers/mfd/da9055-core.c
index f56a1a9..49cb23d 100644
--- a/drivers/mfd/da9055-core.c
+++ b/drivers/mfd/da9055-core.c
@@ -391,7 +391,7 @@ int da9055_device_init(struct da9055 *da9055)
 		da9055->irq_base = pdata->irq_base;
 
 	ret = regmap_add_irq_chip(da9055->regmap, da9055->chip_irq,
-				  IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
+				  IRQF_TRIGGER_LOW | IRQF_ONESHOT,
 				  da9055->irq_base, &da9055_regmap_irq_chip,
 				  &da9055->irq_data);
 	if (ret < 0)
-- 
1.7.0.4



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

* Re: [patch v1 1/5] mfd: da9055 change irq state to default
  2013-01-18  5:19 [patch v1 1/5] mfd: da9055 change irq state to default Ashish Jangam
@ 2013-03-01 11:12 ` Ashish Jangam
  2013-03-08 14:22   ` Ashish Jangam
  0 siblings, 1 reply; 3+ messages in thread
From: Ashish Jangam @ 2013-03-01 11:12 UTC (permalink / raw)
  To: Mark Brown
  Cc: Samuel Ortiz, Axel Lin, Linus Walleij, linux-kernel,
	David Dajun Chen

On Fri, 2013-01-18 at 10:49 +0530, Ashish Jangam wrote:
> This patch changes the irq state from high to the now default low
> state.
> 
> This patch is tested on smdk6410 board.
> 
> Signed-off-by: Ashish Jangam <ashish.jangam@kpitcummins.com>
> ---
>  drivers/mfd/da9055-core.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mfd/da9055-core.c b/drivers/mfd/da9055-core.c
> index f56a1a9..49cb23d 100644
> --- a/drivers/mfd/da9055-core.c
> +++ b/drivers/mfd/da9055-core.c
> @@ -391,7 +391,7 @@ int da9055_device_init(struct da9055 *da9055)
>  		da9055->irq_base = pdata->irq_base;
>  
>  	ret = regmap_add_irq_chip(da9055->regmap, da9055->chip_irq,
> -				  IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> +				  IRQF_TRIGGER_LOW | IRQF_ONESHOT,
>  				  da9055->irq_base, &da9055_regmap_irq_chip,
>  				  &da9055->irq_data);
>  	if (ret < 0)
Can you let me know if this patch looks good to get merged?



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

* Re: [patch v1 1/5] mfd: da9055 change irq state to default
  2013-03-01 11:12 ` Ashish Jangam
@ 2013-03-08 14:22   ` Ashish Jangam
  0 siblings, 0 replies; 3+ messages in thread
From: Ashish Jangam @ 2013-03-08 14:22 UTC (permalink / raw)
  To: Mark Brown
  Cc: Samuel Ortiz, Axel Lin, Linus Walleij, linux-kernel,
	David Dajun Chen

On Fri, 2013-03-01 at 16:43 +0530, Ashish Jangam wrote:
> On Fri, 2013-01-18 at 10:49 +0530, Ashish Jangam wrote:
> > This patch changes the irq state from high to the now default low
> > state.
> > 
> > This patch is tested on smdk6410 board.
> > 
> > Signed-off-by: Ashish Jangam <ashish.jangam@kpitcummins.com>
> > ---
> >  drivers/mfd/da9055-core.c |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > diff --git a/drivers/mfd/da9055-core.c b/drivers/mfd/da9055-core.c
> > index f56a1a9..49cb23d 100644
> > --- a/drivers/mfd/da9055-core.c
> > +++ b/drivers/mfd/da9055-core.c
> > @@ -391,7 +391,7 @@ int da9055_device_init(struct da9055 *da9055)
> >  		da9055->irq_base = pdata->irq_base;
> >  
> >  	ret = regmap_add_irq_chip(da9055->regmap, da9055->chip_irq,
> > -				  IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
> > +				  IRQF_TRIGGER_LOW | IRQF_ONESHOT,
> >  				  da9055->irq_base, &da9055_regmap_irq_chip,
> >  				  &da9055->irq_data);
> >  	if (ret < 0)
> Can you let me know if this patch looks good to get merged?
Any update? Sorry to ping, just need to close this small change till
earlier. 



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

end of thread, other threads:[~2013-03-08 14:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-18  5:19 [patch v1 1/5] mfd: da9055 change irq state to default Ashish Jangam
2013-03-01 11:12 ` Ashish Jangam
2013-03-08 14:22   ` Ashish Jangam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox