mbox series

[GIT,PULL] Counter fixes for 6.12

Message ID ZyxmZi-xVcDV4lVL@ishi (mailing list archive)
State Handled Elsewhere
Headers show
Series [GIT,PULL] Counter fixes for 6.12 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-fixes-for-6.12

Message

William Breathitt Gray Nov. 7, 2024, 7:04 a.m. UTC
The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:

  Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-fixes-for-6.12

for you to fetch changes up to 1437d9f1c56fce9c24e566508bce1d218dd5497a:

  counter: ti-ecap-capture: Add check for clk_enable() (2024-11-05 09:20:11 +0900)

----------------------------------------------------------------
Counter fixes for 6.12

Fix device_node handling in stm32-timer-cnt by calling required
of_node_put() after device node is no longer needed. Check and handle
clk_enable() failures in stm32-timer-cnt and ti-ecap-capture.

Signed-off-by: William Breathitt Gray <wbg@kernel.org>

----------------------------------------------------------------
Javier Carrasco (1):
      counter: stm32-timer-cnt: fix device_node handling in probe_encoder()

Jiasheng Jiang (2):
      counter: stm32-timer-cnt: Add check for clk_enable()
      counter: ti-ecap-capture: Add check for clk_enable()

 drivers/counter/stm32-timer-cnt.c | 17 ++++++++++++++---
 drivers/counter/ti-ecap-capture.c |  7 ++++++-
 2 files changed, 20 insertions(+), 4 deletions(-)

Comments

Greg KH Nov. 7, 2024, 7:08 a.m. UTC | #1
On Thu, Nov 07, 2024 at 04:04:06PM +0900, William Breathitt Gray wrote:
> The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:
> 
>   Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-fixes-for-6.12
> 
> for you to fetch changes up to 1437d9f1c56fce9c24e566508bce1d218dd5497a:
> 
>   counter: ti-ecap-capture: Add check for clk_enable() (2024-11-05 09:20:11 +0900)
> 
> ----------------------------------------------------------------
> Counter fixes for 6.12
> 
> Fix device_node handling in stm32-timer-cnt by calling required
> of_node_put() after device node is no longer needed. Check and handle
> clk_enable() failures in stm32-timer-cnt and ti-ecap-capture.
> 
> Signed-off-by: William Breathitt Gray <wbg@kernel.org>

Can these wait for 6.13-rc1?  I'd like to not have to send another pull
request for this tree for 6.12-final if at all possible.  But if these
are issues that people are hitting now, I'll be glad to do so.

thanks,

greg k-h
William Breathitt Gray Nov. 7, 2024, 7:21 a.m. UTC | #2
On Thu, Nov 07, 2024 at 08:08:50AM +0100, Greg KH wrote:
> On Thu, Nov 07, 2024 at 04:04:06PM +0900, William Breathitt Gray wrote:
> > The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:
> > 
> >   Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)
> > 
> > are available in the Git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-fixes-for-6.12
> > 
> > for you to fetch changes up to 1437d9f1c56fce9c24e566508bce1d218dd5497a:
> > 
> >   counter: ti-ecap-capture: Add check for clk_enable() (2024-11-05 09:20:11 +0900)
> > 
> > ----------------------------------------------------------------
> > Counter fixes for 6.12
> > 
> > Fix device_node handling in stm32-timer-cnt by calling required
> > of_node_put() after device node is no longer needed. Check and handle
> > clk_enable() failures in stm32-timer-cnt and ti-ecap-capture.
> > 
> > Signed-off-by: William Breathitt Gray <wbg@kernel.org>
> 
> Can these wait for 6.13-rc1?  I'd like to not have to send another pull
> request for this tree for 6.12-final if at all possible.  But if these
> are issues that people are hitting now, I'll be glad to do so.
> 
> thanks,
> 
> greg k-h

Sure, these would probably be fine going in for 6.13-rc1 instead. These
issues are theoretical but I'm not aware of them being active problems
for people currently.

Thanks,

William Breathitt Gray
Greg KH Nov. 7, 2024, 7:26 a.m. UTC | #3
On Thu, Nov 07, 2024 at 04:21:17PM +0900, William Breathitt Gray wrote:
> On Thu, Nov 07, 2024 at 08:08:50AM +0100, Greg KH wrote:
> > On Thu, Nov 07, 2024 at 04:04:06PM +0900, William Breathitt Gray wrote:
> > > The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:
> > > 
> > >   Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)
> > > 
> > > are available in the Git repository at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-fixes-for-6.12
> > > 
> > > for you to fetch changes up to 1437d9f1c56fce9c24e566508bce1d218dd5497a:
> > > 
> > >   counter: ti-ecap-capture: Add check for clk_enable() (2024-11-05 09:20:11 +0900)
> > > 
> > > ----------------------------------------------------------------
> > > Counter fixes for 6.12
> > > 
> > > Fix device_node handling in stm32-timer-cnt by calling required
> > > of_node_put() after device node is no longer needed. Check and handle
> > > clk_enable() failures in stm32-timer-cnt and ti-ecap-capture.
> > > 
> > > Signed-off-by: William Breathitt Gray <wbg@kernel.org>
> > 
> > Can these wait for 6.13-rc1?  I'd like to not have to send another pull
> > request for this tree for 6.12-final if at all possible.  But if these
> > are issues that people are hitting now, I'll be glad to do so.
> > 
> > thanks,
> > 
> > greg k-h
> 
> Sure, these would probably be fine going in for 6.13-rc1 instead. These
> issues are theoretical but I'm not aware of them being active problems
> for people currently.

Thanks, now queued up.

greg k-h