public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] extcon fixes for 3.9-rc6
@ 2013-04-08  2:02 Chanwoo Choi
  2013-04-08  2:36 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Chanwoo Choi @ 2013-04-08  2:02 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, MyungJoo Ham, Kyungmin Park,
	최찬우

Hi Greg,

This is extcon fixes for 3.9-rc6
Please pull extcon with following updates.

Best Regards and thanks,
Chanwoo Choi

The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9:

  Linux 3.9-rc5 (2013-03-31 15:12:43 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-3.9-rc6

for you to fetch changes up to 2fbeb4347e02078828510e5fe43ab4bea21b20d1:

  extcon: max8997: Fix return value (2013-04-08 09:13:18 +0900)

----------------------------------------------------------------
This is small fixes for extcon driver.

MAX77693 extcon driver
- Add 'static' keryword to internal data structure
- Fix return value using 'ret' instead of hardcoding

MAX8997 extcon driver
- Use dev_err() instead of pr_err()
- Fix return value using 'ret' instead of hardcoding

----------------------------------------------------------------
Jingoo Han (1):
      extcon: max8997: use dev_err() instead of pr_err()

Sachin Kamat (3):
      extcon: max77693: Staticize default_init_data
      extcon: max77693: Fix return value
      extcon: max8997: Fix return value

 drivers/extcon/extcon-max77693.c | 10 +++++-----
 drivers/extcon/extcon-max8997.c  | 12 ++++++------
 2 files changed, 11 insertions(+), 11 deletions(-)

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

* Re: [GIT PULL] extcon fixes for 3.9-rc6
  2013-04-08  2:02 [GIT PULL] extcon fixes for 3.9-rc6 Chanwoo Choi
@ 2013-04-08  2:36 ` Greg KH
  2013-04-08  3:52   ` Chanwoo Choi
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2013-04-08  2:36 UTC (permalink / raw)
  To: Chanwoo Choi; +Cc: linux-kernel, MyungJoo Ham, Kyungmin Park

On Mon, Apr 08, 2013 at 11:02:14AM +0900, Chanwoo Choi wrote:
> Hi Greg,
> 
> This is extcon fixes for 3.9-rc6
> Please pull extcon with following updates.
> 
> Best Regards and thanks,
> Chanwoo Choi
> 
> The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9:
> 
>   Linux 3.9-rc5 (2013-03-31 15:12:43 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-3.9-rc6
> 
> for you to fetch changes up to 2fbeb4347e02078828510e5fe43ab4bea21b20d1:
> 
>   extcon: max8997: Fix return value (2013-04-08 09:13:18 +0900)
> 
> ----------------------------------------------------------------
> This is small fixes for extcon driver.
> 
> MAX77693 extcon driver
> - Add 'static' keryword to internal data structure
> - Fix return value using 'ret' instead of hardcoding
> 
> MAX8997 extcon driver
> - Use dev_err() instead of pr_err()
> - Fix return value using 'ret' instead of hardcoding

None of these should go into 3.9-final, they are all trivial cleanups.
Only major bug fixes or regressions should be sent right now for 3.9,
sorry.

I will be glad to pull these into my -next branch for 3.10 if you want.

greg k-h

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

* Re: [GIT PULL] extcon fixes for 3.9-rc6
  2013-04-08  2:36 ` Greg KH
@ 2013-04-08  3:52   ` Chanwoo Choi
  2013-04-08 18:33     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Chanwoo Choi @ 2013-04-08  3:52 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, MyungJoo Ham, Kyungmin Park

On 04/08/2013 11:36 AM, Greg KH wrote:
> On Mon, Apr 08, 2013 at 11:02:14AM +0900, Chanwoo Choi wrote:
>> Hi Greg,
>>
>> This is extcon fixes for 3.9-rc6
>> Please pull extcon with following updates.
>>
>> Best Regards and thanks,
>> Chanwoo Choi
>>
>> The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9:
>>
>>   Linux 3.9-rc5 (2013-03-31 15:12:43 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-3.9-rc6
>>
>> for you to fetch changes up to 2fbeb4347e02078828510e5fe43ab4bea21b20d1:
>>
>>   extcon: max8997: Fix return value (2013-04-08 09:13:18 +0900)
>>
>> ----------------------------------------------------------------
>> This is small fixes for extcon driver.
>>
>> MAX77693 extcon driver
>> - Add 'static' keryword to internal data structure
>> - Fix return value using 'ret' instead of hardcoding
>>
>> MAX8997 extcon driver
>> - Use dev_err() instead of pr_err()
>> - Fix return value using 'ret' instead of hardcoding
> None of these should go into 3.9-final, they are all trivial cleanups.
> Only major bug fixes or regressions should be sent right now for 3.9,
> sorry.
>
> I will be glad to pull these into my -next branch for 3.10 if you want.
>
> greg k-h
>
OK, I agree completely with your opinion. Thanks.

Best Regards,
Chanwoo Choi

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

* Re: [GIT PULL] extcon fixes for 3.9-rc6
  2013-04-08  3:52   ` Chanwoo Choi
@ 2013-04-08 18:33     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2013-04-08 18:33 UTC (permalink / raw)
  To: Chanwoo Choi; +Cc: linux-kernel, MyungJoo Ham, Kyungmin Park

On Mon, Apr 08, 2013 at 12:52:10PM +0900, Chanwoo Choi wrote:
> On 04/08/2013 11:36 AM, Greg KH wrote:
> > On Mon, Apr 08, 2013 at 11:02:14AM +0900, Chanwoo Choi wrote:
> >> Hi Greg,
> >>
> >> This is extcon fixes for 3.9-rc6
> >> Please pull extcon with following updates.
> >>
> >> Best Regards and thanks,
> >> Chanwoo Choi
> >>
> >> The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9:
> >>
> >>   Linux 3.9-rc5 (2013-03-31 15:12:43 -0700)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-3.9-rc6
> >>
> >> for you to fetch changes up to 2fbeb4347e02078828510e5fe43ab4bea21b20d1:
> >>
> >>   extcon: max8997: Fix return value (2013-04-08 09:13:18 +0900)
> >>
> >> ----------------------------------------------------------------
> >> This is small fixes for extcon driver.
> >>
> >> MAX77693 extcon driver
> >> - Add 'static' keryword to internal data structure
> >> - Fix return value using 'ret' instead of hardcoding
> >>
> >> MAX8997 extcon driver
> >> - Use dev_err() instead of pr_err()
> >> - Fix return value using 'ret' instead of hardcoding
> > None of these should go into 3.9-final, they are all trivial cleanups.
> > Only major bug fixes or regressions should be sent right now for 3.9,
> > sorry.
> >
> > I will be glad to pull these into my -next branch for 3.10 if you want.
> >
> > greg k-h
> >
> OK, I agree completely with your opinion. Thanks.

Ok, please resend them, along with any other patches you want to see in
3.10, very soon, so I can get them merged into my tree.

thanks.

greg k-h

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

end of thread, other threads:[~2013-04-08 18:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-08  2:02 [GIT PULL] extcon fixes for 3.9-rc6 Chanwoo Choi
2013-04-08  2:36 ` Greg KH
2013-04-08  3:52   ` Chanwoo Choi
2013-04-08 18:33     ` Greg KH

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