Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • gpio-v3.19-3
    Some GPIO fixes for the v3.19 series:
    - Three patches fixing IRQ handling for the DLN2
    - Null pointer handling for grgpio
    
  • drm-intel-fixes-2015-01-15
  • topic/i915-hda-componentized-2015-01-12
  • v3.19-rc4
    eaa27f34 · linux 3.19-rc4 ·
    linux 3.19-rc4
    
  • vfio-v3.19-rc4
    VFIO fixes for v3.19-rc4
     - Fix PCI header check in vfio_pci_probe() (Wei Yang)
    
  • wireless-drivers-for-davem-2015-01-09
    * rtlwifi: fix a regression in large skb allocation failure
    
    iwlwifi:
    
    * fix for 7265D NVM check
    * fixes for scan: fix long scanning times and network discovery
    * new firmware API for iwlmvm supported devices
    * fixes in rate control
    
  • sound-3.19-rc4
    sound fixes for 3.19-rc4
    
    All a few small regression or stable fixes: a Nvidia HDMI ID addition,
    a regression fix for CAIAQ stream count, a typo fix for GPIO setup
    with  STAC/IDT HD-audio codecs, and a Fireworks big-endian fix.
    
  • v3.18.2
    e609d3fc · Linux 3.18.2 ·
    This is the 3.18.2 stable release
    
  • v3.17.8
    bc15d462 · Linux 3.17.8 ·
    This is the 3.17.8 stable release
    
  • v3.14.28
    c3b70f0b · Linux 3.14.28 ·
    This is the 3.14.28 stable release
    
  • v3.10.64
    46a490cc · Linux 3.10.64 ·
    This is the 3.10.64 stable release
    
  • iommu-fixes-v3.19-rc3
    IOMMU Fixes for Linux v3.19-rc3
    
    Including:
    
    	* A domain structure leak fix in the Intel VT-d driver
    
    	* Compile error fix for the VMSA IPMMU driver because of the
    	  IOMMU_EXEC -> IOMMU_NOEXEC conversion
    
    	* Two small cleanups as an aftermath of the merge window and the
    	  domain-leak fix
    
  • qcomlt-v3.19-rc3
    qcomlt-v3.19-rc3
  • mac80211-for-davem-2015-01-06
    Here's just a single fix - a revert of a patch that broke the
    p54 and cw2100 drivers (arguably due to bad assumptions there.)
    Since this affects kernels since 3.17, I decided to revert for
    now and we'll revisit this optimisation properly for -next.
    
  • v3.19-rc3
    b1940cd2 · Linux 3.19-rc3 ·
    Linux 3.19-rc3
    
  • iio-fixes-for-3.19a
    First round of IIO fixes for the 3.19 cycle.
    
    * ad799x fix ad7991/ad7995/ad7999 setup as they do not have a configuration
      register to write to.  It is written during the convesion sequence. As
      such we don't want to write to it at other times.
    * Fix iio_channel_read utility function to return to ensure it is apparent
      if the relevant element is not there. This avoids using a wrong value
      if some channels have the element and others do not.
    
  • iio-for-3.20a
    First round of IIO new drivers, cleanups and functionality for the 3.20 cycle.
    
    New device support
    * jsa1212 proxmity / ambient light sensor
    * SM08500 supported added to the kxcjk-1013 accelerometer driver
    * KMX61 Accelerometer/Magnetometer.  This took a somewhat rocky path
      being first merged, then reverted for a rewrite after a discussion of
      how to support additional functionality and finally being merged prior
      to some last reviews coming in, with resultant follow up patches.
    * Freescale mma9551l driver (minor follow up warning supression patch).
    * Semtech SX9500 proximity device driver.
    * ak8975 gains support for ak09911 and ak09912 and drop the standalone driver
      for the ak09911.
    
    New functionality
     * Dummy driver gains some virtual registers making it more flexible.
     * IIO_ACTIVITY channel types, with modifiers running, walking etc.  This is
       to support on chip motion clasifiers.  As such it is in the form of a
       confidence percentage.  The only devices so far only do binary decisions
       but this gives us room when other devices give more nuanced clasification.
     * IIO_EV_DIR_NONE type for events where there is no obvious direction.
       First case is step detection.
     * IIO_STEPS channel type for pedometers.
     * ENABLE mask element used to control turning on counting types such as
       the pedometer that need a 'start point'.
     * INSTANCE event type to support things that happen once.
     * info element for height calibration (used in various motion estimation
       algorithms). Note heigh tof use
     * dummy driver demonstration of the use of all the new bits above.
     * event monitor support for the new events.
     * inv_mpu6050 gains an i2c mux to allow bypassing the device to access
       additional devices connected on the other side of it.  Note that in
       Windows these are handled by firmware on the device and not exposed
       directly.
     * inv_mpu6050 gains ACPI enumeration.
     * inkern interface gains iio_write_channel_raw to allow in kernel users
       of DAC functionality via a simple wrapper.
     * Document input current readings in the ABI docs.
     * Add an error message when we get an out of range error in device tree
       processing for the in kernel interfaces.  Basically a device tree debugging
       aid.
     * Add a sanity check that a scan index for a channel is unique during
       registration.  There to help catch bugs as this should never happen
       in a bug free driver.
    
    Cleanups and fixlets
    
     A rework of buffer registration from Lars - a precursor to some other
     upcoming new stuff (a few patches from others rolled in here as well).
     * Ensure all drivers register the same channels for the device and buffer.
     * Move buffer registration into the core rather than using the old
       two step approach.  Now we have simple ways of using a unified set channels
       for both without requiring channels be exposed by both interface, this
       removes a fair bit of boilerplate.
     * Stop sca3000 and ad5933 (both in staging) enabling buffer channels by
       default. It has long be convention in IIO to startup with no channels
       enabled and leave it up to userspace to say what goes in the buffer.
       Getting rid of these allows us to drop export of iio_scan_mask_set.
     * Drop get_bytes_per_datum from iio_buffer_access_funcs as not been used
       for a while.
     * Allocate standard buffer attributes in the core rather than in every
       driver with a buffer.
     * Make the length attribute read only when a driver is not able to set
       the length.
     * Drop the get_length callback for buffers as it is already available in
       struct iio_buffer.
     * Drop an unused arguement form iio_kfifo_allocate and add devm allocator
       for it.
     * some kconfig entries gain anotation with the resulting module name.
     * Fix a resulting compile issue in dummy driver due to a stub taking
       wrong parameters as a result of the above rework.
     * Fix an off by 2 error in copying the core assigned buffer attributes.
    
    Other cleanups,
     * Trivial space before comma fixups.
     * ak8975 fixlets - none critical.  Rework to allow more device support.
     * Drop unnecessary sizeof(u8) calls.
     * bmp280 - refactor the compensation code to reduce copy operations and
       code length.  A second patch futher optimized this and performed some
       other minor cleanups.
     * kxcjk-1013 - various power control cleanups to avoid unnecessary enable
       / disable of device.  Make sure it is only controlled at all if CONFIG_PM
       is enabled.  Also som cleanups of error paths.
     * Small cleanups in adf4530 driver - pointless message and unnecessary braces.
     * Clarifiy the proximity ABI docs to make it clear it should get bigger
       as we move futher away.
     * Drop a misleading comment form industrialio-core.c
     * Trivial white space cleanups.
     * sca3000 looses an unused debug function.
     * Fix char unsigned ordering in ad8366
     * Increase the sleep time in ad9523 to make it predictable (value didn't
       really matter so make it more than 20 msecs)
     * mxs-lradc touchscreen property cleanups in device tree are fixed to ensure
       the meet all the 'interesting' documentation.
     * A couple of cleanups for the staging ad5933 driver to avoid unnecessary
       conversion to a processed temperature vlaue in kernel and remove
       platform data form the state structure as not needed after probe.
     * Fix a wrong scale factor in the docs.
    
    Misc
     * Add IIO include files to the maintainers entry.
    
  • topic/atomic-core-2015-01-05
  • sound-3.19-rc3
    sound fixes for 3.19-rc3
    
    Nothing too exciting as a new year's start here: most of fixes are for
    ASoC, a boot crash fix on OMAP for deferred probe, a few driver
    specific fixes (Intel, dwc, rockchip, rt5677), in addition to typo
    fixes in kerneldoc comments for PCM.
    
  • v3.2.66
    ac4619ec · Linux 3.2.66 ·
    This is the 3.2.66 stable release