All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH 0/2] mfd: MAX8997: Support irq domain for Maxim MAX8997
@ 2012-07-02  0:02 Chanwoo Choi
  2012-07-05 14:20 ` Samuel Ortiz
  0 siblings, 1 reply; 3+ messages in thread
From: Chanwoo Choi @ 2012-07-02  0:02 UTC (permalink / raw)
  To: gregkh
  Cc: thomas.abraham, broonie, grant.likely, sameo, myungjoo.ham,
	kyungmin.park, linux-kernel, Chanwoo Choi

This patchset add support irq domain for Maxim MAX8997 interrupts.

I have discussed about this patchset with Greg KH and received below reply.
So, I resend this patchset.
- https://lkml.org/lkml/2012/5/20/142

This first patch is based on patch written by Thomas Abraham
(https://lkml.org/lkml/2012/4/18/145) but this patch had occurred
build break, it was reported by Stephen Rothwell and this patch was
reverted by Mark Brown. You can check reverted patch on below patch.
- http://git.kernel.org/?p=linux/kernel/git/broonie/regulator.git;a=commit;h=82b719b11fd750188c125078ad6a6c0d23219dfb
So I fix two bug which set max88997->irq_domain instead
of NULL pointer and correct wrong parameter.

The second patch use irq domain for muic interrupt of extcon-max8997
instead of irq_base in platform data of MAX8997 driver.

Chanwoo Choi (1):
  Extcon: MAX8997: Add support irq domain for MAX8997 muic

Thomas Abraham (1):
  mfd: add irq domain support for max8997 interrupts

 arch/arm/mach-exynos/mach-nuri.c    |    4 --
 arch/arm/mach-exynos/mach-origen.c  |    1 -
 drivers/extcon/Kconfig              |    2 +-
 drivers/extcon/extcon-max8997.c     |   29 ++++++++++------
 drivers/mfd/Kconfig                 |    1 +
 drivers/mfd/max8997-irq.c           |   62 +++++++++++++++++++++--------------
 drivers/mfd/max8997.c               |    1 -
 include/linux/mfd/max8997-private.h |    4 ++-
 include/linux/mfd/max8997.h         |    1 -
 9 files changed, 60 insertions(+), 45 deletions(-)


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

* Re: [RESEND PATCH 0/2] mfd: MAX8997: Support irq domain for Maxim MAX8997
  2012-07-02  0:02 [RESEND PATCH 0/2] mfd: MAX8997: Support irq domain for Maxim MAX8997 Chanwoo Choi
@ 2012-07-05 14:20 ` Samuel Ortiz
  2012-07-05 23:35   ` Chanwoo Choi
  0 siblings, 1 reply; 3+ messages in thread
From: Samuel Ortiz @ 2012-07-05 14:20 UTC (permalink / raw)
  To: Chanwoo Choi
  Cc: gregkh, thomas.abraham, broonie, grant.likely, myungjoo.ham,
	kyungmin.park, linux-kernel

Hi Chanwoo,

On Mon, Jul 02, 2012 at 09:02:42AM +0900, Chanwoo Choi wrote:
> This patchset add support irq domain for Maxim MAX8997 interrupts.
> 
> I have discussed about this patchset with Greg KH and received below reply.
> So, I resend this patchset.
> - https://lkml.org/lkml/2012/5/20/142
> 
> This first patch is based on patch written by Thomas Abraham
> (https://lkml.org/lkml/2012/4/18/145) but this patch had occurred
> build break, it was reported by Stephen Rothwell and this patch was
> reverted by Mark Brown. You can check reverted patch on below patch.
> - http://git.kernel.org/?p=linux/kernel/git/broonie/regulator.git;a=commit;h=82b719b11fd750188c125078ad6a6c0d23219dfb
> So I fix two bug which set max88997->irq_domain instead
> of NULL pointer and correct wrong parameter.
> 
> The second patch use irq domain for muic interrupt of extcon-max8997
> instead of irq_base in platform data of MAX8997 driver.
> 
> Chanwoo Choi (1):
>   Extcon: MAX8997: Add support irq domain for MAX8997 muic
> 
> Thomas Abraham (1):
>   mfd: add irq domain support for max8997 interrupts
Both patches applied to my for-next branch, thanks.

Cheers,
Samuel.

-- 
Intel Open Source Technology Centre
http://oss.intel.com/

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

* Re: [RESEND PATCH 0/2] mfd: MAX8997: Support irq domain for Maxim MAX8997
  2012-07-05 14:20 ` Samuel Ortiz
@ 2012-07-05 23:35   ` Chanwoo Choi
  0 siblings, 0 replies; 3+ messages in thread
From: Chanwoo Choi @ 2012-07-05 23:35 UTC (permalink / raw)
  To: Samuel Ortiz
  Cc: gregkh, thomas.abraham, broonie, grant.likely, myungjoo.ham,
	kyungmin.park, linux-kernel

Hi Samuel,

On 07/05/2012 11:20 PM, Samuel Ortiz wrote:

> Hi Chanwoo,
> 
> On Mon, Jul 02, 2012 at 09:02:42AM +0900, Chanwoo Choi wrote:
>> This patchset add support irq domain for Maxim MAX8997 interrupts.
>>
>> I have discussed about this patchset with Greg KH and received below reply.
>> So, I resend this patchset.
>> - https://lkml.org/lkml/2012/5/20/142
>>
>> This first patch is based on patch written by Thomas Abraham
>> (https://lkml.org/lkml/2012/4/18/145) but this patch had occurred
>> build break, it was reported by Stephen Rothwell and this patch was
>> reverted by Mark Brown. You can check reverted patch on below patch.
>> - http://git.kernel.org/?p=linux/kernel/git/broonie/regulator.git;a=commit;h=82b719b11fd750188c125078ad6a6c0d23219dfb
>> So I fix two bug which set max88997->irq_domain instead
>> of NULL pointer and correct wrong parameter.
>>
>> The second patch use irq domain for muic interrupt of extcon-max8997
>> instead of irq_base in platform data of MAX8997 driver.
>>
>> Chanwoo Choi (1):
>>   Extcon: MAX8997: Add support irq domain for MAX8997 muic
>>
>> Thomas Abraham (1):
>>   mfd: add irq domain support for max8997 interrupts
> Both patches applied to my for-next branch, thanks.
> 
> Cheers,
> Samuel.
> 

Thank you for your reply and applied it

Best Regards,
Chanwoo Choi

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

end of thread, other threads:[~2012-07-05 23:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-02  0:02 [RESEND PATCH 0/2] mfd: MAX8997: Support irq domain for Maxim MAX8997 Chanwoo Choi
2012-07-05 14:20 ` Samuel Ortiz
2012-07-05 23:35   ` Chanwoo Choi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.