mbox series

[PULL] First set of IIO and counter fixes for the 5.10 cycle.

Message ID 20201116185719.17696afa@archlinux (mailing list archive)
State New, archived
Headers show
Series [PULL] First set of IIO and counter fixes for the 5.10 cycle. | expand

Pull-request

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

Message

Jonathan Cameron Nov. 16, 2020, 6:57 p.m. UTC
The following changes since commit 7e97e4cbf30026b49b0145c3bfe06087958382c5:

  staging: fieldbus: anybuss: jump to correct label in an error path (2020-10-27 13:24:51 +0100)

are available in the Git repository at:

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

for you to fetch changes up to e5b1032a656e9aa4c7a4df77cb9156a2a651a5f9:

  iio: accel: kxcjk1013: Add support for KIOX010A ACPI DSM for setting tablet-mode (2020-11-14 17:33:47 +0000)

----------------------------------------------------------------
First set of IIO and counter fixes for the 5.10 cycle.

IIO

cros_ec
 - Provide defauts for max and min frequency when older machines fail
   to return them correctly.
ingenic-adc
 - Fix wrong vref value for JZ4770 SoC
 - Fix AUX / VBAT readings when touchscreen in use by pausing touchscreen
   readings during a read of these channels.
kxcjk1013
 - Fix an issue with KIOX010A ACPI id using devices which need to run
   a ACPI device specific method to avoid leaving the keyboard disabled.
   Includes a minor precursor patch to make this fix easier to do.
mt6577-auxadc
 - Fix an issue with dev_comp not being set resulting in a null ptr deref.
st_lsm6dsx
 - Set a 10ms min shub slave timeout to handle fast snesors where more time
   is needed to set up the config than the cycles allowed.
stm32-adc
 - Fix an issue due to a clash between an ADC configured to use IRQs and
   a second configured to use DMA cause by some incorrect register masking.
vcnl4035
 - Kconfig missing dependency

Counter

ti-eqep
 - wrong value for max_register as one beyond the end instead of the end.

----------------------------------------------------------------
David Lechner (1):
      counter/ti-eqep: Fix regmap max_register

Fabien Parent (1):
      iio: adc: mediatek: fix unset field

Gwendal Grignou (1):
      iio: cros_ec: Use default frequencies when EC returns invalid information

Hans de Goede (2):
      iio: accel: kxcjk1013: Replace is_smo8500_device with an acpi_type enum
      iio: accel: kxcjk1013: Add support for KIOX010A ACPI DSM for setting tablet-mode

Lorenzo Bianconi (1):
      iio: imu: st_lsm6dsx: set 10ms as min shub slave timeout

Necip Fazil Yildiran (1):
      iio: light: fix kconfig dependency bug for VCNL4035

Olivier Moysan (1):
      iio: adc: stm32-adc: fix a regression when using dma and irq

Paul Cercueil (2):
      iio/adc: ingenic: Fix battery VREF for JZ4770 SoC
      iio/adc: ingenic: Fix AUX/VBAT readings when touchscreen is used

 drivers/counter/ti-eqep.c                          |  4 +-
 drivers/iio/accel/kxcjk-1013.c                     | 51 +++++++++++++++++++---
 drivers/iio/adc/ingenic-adc.c                      | 34 ++++++++++++---
 drivers/iio/adc/mt6577_auxadc.c                    |  6 ++-
 drivers/iio/adc/stm32-adc-core.c                   | 41 ++++++++---------
 drivers/iio/adc/stm32-adc.c                        | 50 ++++++++++++++++++++-
 .../common/cros_ec_sensors/cros_ec_sensors_core.c  | 16 ++++---
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c       |  6 ++-
 drivers/iio/light/Kconfig                          |  1 +
 9 files changed, 160 insertions(+), 49 deletions(-)

Comments

Greg Kroah-Hartman Nov. 17, 2020, 9:53 a.m. UTC | #1
On Mon, Nov 16, 2020 at 06:57:19PM +0000, Jonathan Cameron wrote:
> The following changes since commit 7e97e4cbf30026b49b0145c3bfe06087958382c5:
> 
>   staging: fieldbus: anybuss: jump to correct label in an error path (2020-10-27 13:24:51 +0100)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.10a

Pulled and pushed out,t hanks.

greg k-h