mbox series

[PULL] 2nd set of IIO fixes for the 6.6 cycle (probably for 6.7 merge window given timing)

Message ID 20231021155727.511a344c@jic23-huawei (mailing list archive)
State Handled Elsewhere
Headers show
Series [PULL] 2nd set of IIO fixes for the 6.6 cycle (probably for 6.7 merge window given timing) | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-6.6b

Message

Jonathan Cameron Oct. 21, 2023, 2:57 p.m. UTC
The following changes since commit ffd1f150fffe8a708f6ccd15152791d0e8f812b6:

  Merge tag 'iio-fixes-for-6.6a' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into char-misc-linus (2023-10-06 16:58:28 +0200)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-6.6b

for you to fetch changes up to bee448390e5166d019e9e037194d487ee94399d9:

  iio: afe: rescale: Accept only offset channels (2023-10-17 20:25:32 +0100)

----------------------------------------------------------------
2nd set of IIO fixes for the 6.6 cycle.

Note, given timing my expectation is these will be queued for the
6.7 merge window but they could go quicker if the 6.6 cycle ends up
being extended.

afe:
  * Allow for channels with offset but no scale.  In this case the scale
    can be assumed to be 1.
adi,ad74115:
  * Add missing dt-binding constraint on number of reset-gpios.
samsung,exynos:
  * Don't request touchscreen interrupt if it is not going to be used,
    getting rid of an incorrect resulting warning message.
xilinx,xadc:
  * Avoid changing preset voltage and themperature thresholds as they
    are typicaly set as part of FPGA image building so should be left
    alone.
  * Fix wrong temperature offset and scale for some devices.

----------------------------------------------------------------
Krzysztof Kozlowski (1):
      dt-bindings: iio: add missing reset-gpios constrain

Linus Walleij (1):
      iio: afe: rescale: Accept only offset channels

Marek Szyprowski (1):
      iio: exynos-adc: request second interupt only when touchscreen mode is used

Robert Hancock (2):
      iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds
      iio: adc: xilinx-xadc: Correct temperature offset/scale for UltraScale

 .../devicetree/bindings/iio/addac/adi,ad74115.yaml |  3 +-
 .../devicetree/bindings/iio/dac/adi,ad5758.yaml    |  3 +-
 .../devicetree/bindings/iio/health/ti,afe4403.yaml |  3 +-
 .../devicetree/bindings/iio/health/ti,afe4404.yaml |  3 +-
 drivers/iio/adc/exynos_adc.c                       | 24 +++++++------
 drivers/iio/adc/xilinx-xadc-core.c                 | 39 ++++++++--------------
 drivers/iio/adc/xilinx-xadc.h                      |  2 ++
 drivers/iio/afe/iio-rescale.c                      | 19 ++++++++---
 8 files changed, 53 insertions(+), 43 deletions(-)

Comments

Greg Kroah-Hartman Oct. 21, 2023, 3:36 p.m. UTC | #1
On Sat, Oct 21, 2023 at 03:57:27PM +0100, Jonathan Cameron wrote:
> The following changes since commit ffd1f150fffe8a708f6ccd15152791d0e8f812b6:
> 
>   Merge tag 'iio-fixes-for-6.6a' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into char-misc-linus (2023-10-06 16:58:28 +0200)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-6.6b
> 
> for you to fetch changes up to bee448390e5166d019e9e037194d487ee94399d9:
> 
>   iio: afe: rescale: Accept only offset channels (2023-10-17 20:25:32 +0100)
> 
> ----------------------------------------------------------------
> 2nd set of IIO fixes for the 6.6 cycle.
> 
> Note, given timing my expectation is these will be queued for the
> 6.7 merge window but they could go quicker if the 6.6 cycle ends up
> being extended.

Let's see how long the cycle takes, I've pulled this into my "to linus"
branch for now, thanks!

greg k-h