mbox series

[PULL] First set of Counter fixes for 6.1 cycle

Message ID Y1bBTQTBCrR/hUqQ@ishi (mailing list archive)
State Handled Elsewhere
Headers show
Series [PULL] First set of Counter fixes for 6.1 cycle | expand

Pull-request

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

Message

William Breathitt Gray Oct. 24, 2022, 4:46 p.m. UTC
The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:

  Linux 6.1-rc1 (2022-10-16 15:36:24 -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.1a

for you to fetch changes up to d501d37841d3b7f18402d71a9ef057eb9dde127e:

  counter: 104-quad-8: Fix race getting function mode and direction (2022-10-23 20:39:26 -0400)

----------------------------------------------------------------
First set of Counter fixes for 6.1 cycle

Typical driver fixes for races and bugs. This also includes a sparse
warning fix for the recently introduced counter_array API: the macro
DEFINE_COUNTER_ARRAY_POLARITY() is reduced to a simple structure
definition rather than multiple data structure definitions.

- 104-quad-8
  * Fix race getting function mode and direction
- microchip-tcb-capture
  * Handle Signal1 read and Synapse
- ti-ecap-capture
  * fix IS_ERR() vs NULL check
- counter
  * Reduce DEFINE_COUNTER_ARRAY_POLARITY() to defining counter_array

----------------------------------------------------------------
Dan Carpenter (1):
      counter: ti-ecap-capture: fix IS_ERR() vs NULL check

William Breathitt Gray (3):
      counter: Reduce DEFINE_COUNTER_ARRAY_POLARITY() to defining counter_array
      counter: microchip-tcb-capture: Handle Signal1 read and Synapse
      counter: 104-quad-8: Fix race getting function mode and direction

 drivers/counter/104-quad-8.c            | 64 +++++++++++++++++++++------------
 drivers/counter/microchip-tcb-capture.c | 18 +++++++---
 drivers/counter/ti-ecap-capture.c       |  7 ++--
 include/linux/counter.h                 |  5 ++-
 4 files changed, 62 insertions(+), 32 deletions(-)

Comments

Greg Kroah-Hartman Oct. 25, 2022, 5:09 p.m. UTC | #1
On Mon, Oct 24, 2022 at 12:46:05PM -0400, William Breathitt Gray wrote:
> The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:
> 
>   Linux 6.1-rc1 (2022-10-16 15:36:24 -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.1a

Pulled and pushed out, thanks.

greg k-h