linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] extcon next for v5.8
       [not found] <CGME20200529030043epcas1p2a41f6271b91e086a2e730a488ce53015@epcas1p2.samsung.com>
@ 2020-05-29  3:11 ` Chanwoo Choi
  2020-05-29  8:03   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Chanwoo Choi @ 2020-05-29  3:11 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-kernel, Chanwoo Choi (samsung.com),
	Chanwoo Choi (chanwoo@kernel.org), 함명주

Dear Greg,

This is extcon-next pull request for v5.8. I add detailed description of
this pull request on below. Please pull extcon with following updates.

Best Regards,
Chanwoo Choi


The following changes since commit 9cb1fd0efd195590b828b9b865421ad345a4a145:

  Linux 5.7-rc7 (2020-05-24 15:32:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-5.8

for you to fetch changes up to bef91b5ad53981b6cb4db7f6253d1808cfef593d:

  extcon: arizona: Fix runtime PM imbalance on error (2020-05-28 18:02:29 +0900)

----------------------------------------------------------------

Update extcon for v5.8

Detailed description for this pull request:
1. Update extcon provider driver
- Fix an error handling code by using devm_iio_channel_get() for extcon-adc-jac.c
- Fix the usage counter imbalance of runtime PM for extcon-arizona.c.
- Add proper dt-compatible string for extcon-max14577.c.

2. Update extcon core with minor updates:
- Remove unneeded initialization of local variable in extcon_register_notifier.

----------------------------------------------------------------
Christophe JAILLET (1):
      extcon: adc-jack: Fix an error handling path in 'adc_jack_probe()'

Colin Ian King (1):
      extcon: remove redundant assignment to variable idx

Dinghao Liu (1):
      extcon: arizona: Fix runtime PM imbalance on error

Marek Szyprowski (1):
      extcon: max14577: Add proper dt-compatible strings

 drivers/extcon/extcon-adc-jack.c |  3 +--
 drivers/extcon/extcon-arizona.c  | 17 +++++++++--------
 drivers/extcon/extcon-max14577.c | 10 ++++++++++
 drivers/extcon/extcon.c          |  2 +-
 4 files changed, 21 insertions(+), 11 deletions(-)

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

* Re: [GIT PULL] extcon next for v5.8
  2020-05-29  3:11 ` [GIT PULL] extcon next for v5.8 Chanwoo Choi
@ 2020-05-29  8:03   ` Greg KH
  2020-05-29  8:32     ` Chanwoo Choi
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2020-05-29  8:03 UTC (permalink / raw)
  To: Chanwoo Choi
  Cc: linux-kernel, Chanwoo Choi (chanwoo@kernel.org),
	함명주

On Fri, May 29, 2020 at 12:11:03PM +0900, Chanwoo Choi wrote:
> Dear Greg,
> 
> This is extcon-next pull request for v5.8. I add detailed description of
> this pull request on below. Please pull extcon with following updates.
> 
> Best Regards,
> Chanwoo Choi
> 
> 
> The following changes since commit 9cb1fd0efd195590b828b9b865421ad345a4a145:
> 
>   Linux 5.7-rc7 (2020-05-24 15:32:54 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-5.8

As my char-misc-next branch is currently at 5.7-rc5, why did you need to
make this against -rc7?

Mind if I just rebase your patches against my tree instead of pulling
the whole thing up to -rc7, or is there some dependancy there that you
needed to do this?

thanks,

greg k-h

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

* Re: [GIT PULL] extcon next for v5.8
  2020-05-29  8:03   ` Greg KH
@ 2020-05-29  8:32     ` Chanwoo Choi
  0 siblings, 0 replies; 3+ messages in thread
From: Chanwoo Choi @ 2020-05-29  8:32 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-kernel, Chanwoo Choi (chanwoo@kernel.org),
	함명주

Dear Greg,

On 5/29/20 5:03 PM, Greg KH wrote:
> On Fri, May 29, 2020 at 12:11:03PM +0900, Chanwoo Choi wrote:
>> Dear Greg,
>>
>> This is extcon-next pull request for v5.8. I add detailed description of
>> this pull request on below. Please pull extcon with following updates.
>>
>> Best Regards,
>> Chanwoo Choi
>>
>>
>> The following changes since commit 9cb1fd0efd195590b828b9b865421ad345a4a145:
>>
>>   Linux 5.7-rc7 (2020-05-24 15:32:54 -0700)
>>
>> are available in the Git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-5.8
> 
> As my char-misc-next branch is currently at 5.7-rc5, why did you need to
> make this against -rc7?

I'm sorry. I just checked the 'char-misc-linus' branch
and then made it based on 5.7-rc7. It is my mistake.

I'll make the pull-request based on v5.7-rc5 again.

> 
> Mind if I just rebase your patches against my tree instead of pulling
> the whole thing up to -rc7, or is there some dependancy there that you
> needed to do this?
> 
> thanks,
> 
> greg k-h
> 
> 


-- 
Best Regards,
Chanwoo Choi
Samsung Electronics

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

end of thread, other threads:[~2020-05-29  8:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20200529030043epcas1p2a41f6271b91e086a2e730a488ce53015@epcas1p2.samsung.com>
2020-05-29  3:11 ` [GIT PULL] extcon next for v5.8 Chanwoo Choi
2020-05-29  8:03   ` Greg KH
2020-05-29  8:32     ` Chanwoo Choi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).