mbox series

[PULL] First set of IIO fixes for 5.3

Message ID 20190728095828.01c5cbe2@archlinux (mailing list archive)
State New, archived
Headers show
Series [PULL] First set of IIO fixes for 5.3 | expand

Pull-request

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

Message

Jonathan Cameron July 28, 2019, 8:58 a.m. UTC
The following changes since commit d7d170a8e357bd9926cc6bfea5c2385c2eac65b2:

  Merge tag 'tag-chrome-platform-for-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux (2019-07-11 18:45:29 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 90c6260c1905a68fb596844087f2223bd4657fee:

  iio: adc: gyroadc: fix uninitialized return code (2019-07-27 21:56:59 +0100)

----------------------------------------------------------------
First set of IIO fixes in the 5.3 cycle.

* cros_ec_accel_legacy
  - Fix a false double entry for channel scale as both per channel
    and shared.
* gyro_adc
  - Fix uninitialized return code that got detected by GCC 9.0 having
    be previously missed.
* ingenic_adc
  - Set the clock divider on probe to avoid an issue seen with false
    button press detections on JZ4725B SoCs.
* max9611
  - Backwards parameters in GENMASK.
* mpu6050
  - Enforce the fact only certain scan modes are actually possible.

One counter fix also picked up for William,

* generic-counter.rst
  - Fix some references.

----------------------------------------------------------------
Arnd Bergmann (1):
      iio: adc: gyroadc: fix uninitialized return code

Gwendal Grignou (1):
      iio: cros_ec_accel_legacy: Fix incorrect channel setting

Jean-Baptiste Maneyrol (1):
      iio: imu: mpu6050: add missing available scan masks

Joe Perches (1):
      iio: adc: max9611: Fix misuse of GENMASK macro

Maarten ter Huurne (1):
      IIO: Ingenic JZ47xx: Set clock divider on probe

Mauro Carvalho Chehab (1):
      docs: generic-counter.rst: fix broken references for ABI file

 Documentation/driver-api/generic-counter.rst |  4 +--
 drivers/iio/accel/cros_ec_accel_legacy.c     |  1 -
 drivers/iio/adc/ingenic-adc.c                | 54 ++++++++++++++++++++++++++++
 drivers/iio/adc/max9611.c                    |  2 +-
 drivers/iio/adc/rcar-gyroadc.c               |  4 +--
 drivers/iio/imu/inv_mpu6050/inv_mpu_core.c   | 43 ++++++++++++++++++++++
 6 files changed, 102 insertions(+), 6 deletions(-)

Comments

Greg Kroah-Hartman July 28, 2019, 9:28 a.m. UTC | #1
On Sun, Jul 28, 2019 at 09:58:28AM +0100, Jonathan Cameron wrote:
> The following changes since commit d7d170a8e357bd9926cc6bfea5c2385c2eac65b2:
> 
>   Merge tag 'tag-chrome-platform-for-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux (2019-07-11 18:45:29 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.3a

Pulled and pushed out, thanks.

greg k-h