1. 24 Jun, 2021 19 commits
  2. 18 Jun, 2021 8 commits
  3. 17 Jun, 2021 1 commit
    • Greg Kroah-Hartman's avatar
      Merge tag 'iio-for-5.14b' of... · 8c51c9b5
      Greg Kroah-Hartman authored
      Merge tag 'iio-for-5.14b' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next
      
      Jonathan writes:
      
      Second set of Counter and IIO new device support, cleanups etc for 5.14
      
      Counter
      ------
      
      First part of general rework of counter subsystem to add a chrdev interface
      for event drive data capture.  Most of it will hopefully land next cycle.
      
      * Consolidate documentation to avoid multiple copies of same docs in per
        device files.
      * Constify various arrays etc across subsystem.
      * 104-quad-8:
        - Annotate the module config parameter to avoid using it when kernel is
          locked down.
        - Spelling and trivial comment drops etc
      * Intel QEP
        - Follow up cleanups of trivial stuff from initial patch series.
      
      IIO
      ---
      
      Includes some cleanups as part of two ongoing audits
      - runtime pm usage in IIO.
      - Insufficient alignment on buffers passed to
      iio_push_to_buffers_with_timstamp()
      
      New device support
      * bosch,bmc150
        - Add ID for BMA253
      
      Minor features / cleanups / minor fixes / late breaking fixes
      * iio_push_to_buffers_with_timestamp() alignment fixes.
        This set includes those where the best option is to mark the buffer as
        __aligned(8). Normally this choice was made because there is too high a degree
        of possible variation in number of channels enabled to be able to guarantee
        the timestamp was always in the same location.  This ruled out the more
        obvious structure form used in other drivers. Only one small class of
        related issues have patches under review and we can finally tighten up the
        explicit rules to reflect the hidden requirement.
      
      * dummy
        - Kconfig build dependency fix.
      * adi,ad_sigma_delta
        - General devm related simplifications for these devices.
      * adi,adf4350
        - Fix some missing cleanup on error path.
      * adi,adis, ADC drivers.
        - Clean out unneeded spi_set_drvdata()
      * ams-taos,tcs3472
        - Fix a potential free of an irq that was never allocated.
      * atlas,sensor
        - Drop unbalanced runtime pm call and use pm_runtime_resume_and_get()
          to reduce boilerplate.
      * bosch,bma180
        - Fix bandwidth register values used.
      * bosch,bmc150
        - Fix wrong pointer being dereferenced in remove.
        - Stop device trying unregister itself rather than the second device.
        - Refactor ACPI second device handing.
        - Add support for DUAL250E ACPI HID.
        - Move some stuff into the header to enable following patches to not
          add additional accessor functions. Drop existing accessors.
        - Add support for hinge angle setting with DUAL250E ACPI DSM to ensure
          keyboard and touchpad enabled correctly when in laptop mode and disabled
          otherwise.
        - Add label attr for the multiple sensor locations with DUAL250E ACPI HID.
        - Fix scale units for bma222
        - Various reordering of devices supported lists to be alphabetical order.
        - Drop unnecessary duplicated chip_info_tbl[] entries.
        - Document that some devices have two interrupts, even if not currently
          used by the driver.
        - Move bma254 over to the bma255 driver.
        - Move to more consistent scale values, based on assumption that some
          datasheets use lower precision in their calculations in comparison
          with others.
      * hid-sensors
        - Use namespaces for exported symbols.
        - Update includes using manual inspection of output of the
          include-what-you-use tool.
      * invensense,icp10100
        - Drop unbalanced runtime pm put. Use pm_runtime_resume_and_get() to cleanly
          handle potential error.
      * invensense,mpu6050
        - Drop use of %hhx string formatting.
        - runtime pm boilerplate removal and drop an unbalanced call in remove.
      * liteon,ltr501
        - Fix inaccurate volatile register list.
        - Fix wrong mode bit.
        - Add a missing leXX_to_cpu() conversion.
        - Mark ltr501_chip_info structure as const.
      * pulsed-light-lidar:
        - Boilerplate removal using runtime_pm_resume_and_get()
      * scmi-sensors
        - Formatting of SPDX fix.
      * silabs,si1133
        - Fix a string format warning.
        - Drop remaining uses of %hhx string formatting.
      * silabs,si1145
        - Drop use of %hhx string formatting.
      * ti,ads1015
        - Drop unbalanced runtime pm call in remove and reduce boilerplate.
      
      * tag 'iio-for-5.14b' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio: (76 commits)
        iio: light: tcs3472: do not free unallocated IRQ
        iio: accel: bmc150: Use more consistent and accurate scale values
        iio: hid-sensors: Update header includes
        iio: pressure: icp10100: Balance runtime pm + use pm_runtime_resume_and_get()
        iio: prox: pulsed-light-v2: Use pm_runtime_resume_and_get()
        iio: chemical: atlas-sensor: Balance runtime pm + pm_runtime_resume_and_get()
        iio: adc: ads1015: Balance runtime pm + pm_runtime_resume_and_get()
        iio: imu: mpu6050: Balance runtime pm + use pm_runtime_resume_and_get()
        iio: hid-sensors: lighten exported symbols by moving to IIO_HID namespace
        iio: prox: isl29501: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        iio: light: vcnl4035: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        iio: light: vcnl4000: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        iio: magn: rm3100: Fix alignment of buffer in iio_push_to_buffers_with_timestamp()
        iio: adc: ti-ads8688: Fix alignment of buffer in iio_push_to_buffers_with_timestamp()
        iio: adc: mxs-lradc: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        iio: adc: hx711: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        iio: adc: at91-sama5d2: Fix buffer alignment in iio_push_to_buffers_with_timestamp()
        counter: interrupt-cnt: Add const qualifier for actions_list array
        iio: ltr501: mark ltr501_chip_info as const
        iio: ltr501: ltr501_read_ps(): add missing endianness conversion
        ...
      8c51c9b5
  4. 16 Jun, 2021 12 commits