Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • gpio-v3.13-3
    GPIO fixes for the v3.13 series:
    
    - Fix compile warnings.
    
    - Fix overly talkative diagnostic messages from usual use
      cases wrt GPIO descriptors.
    
    - Add a documentation 00-INDEX
    
    - Use platform GPIOs as fallback when ACPI or device tree is
      used as the primary means to get GPIO lines.
    
    - A bug fix for the MPC8572/MPC8536 fixing erroneous input data.
    
  • iio-fixes-for-3.13b
    Second round of IIO fixes for the 3.13 cycle.
    
    2 fixes here.
    
    * The gp2ap020a00f is a simple missing kconfig dependency.
    
    * The hid sensors hub fix is a work around for an issue introduced by hardware
    changes due to a certain large software vendor having an 'interesting'
    interpretation of the specification and hence indexing some arrays from 1
    rather than 0.  The fix takes advantage of the logical min and max reading
    facilities introduced by the precursor patch to figure out whether we have
    a 0 indexed or 1 indexed device and to adjust appropriately.  It also
    drops a previous kconfig option that allowed this issue to be worked around
    at build time.
    
  • drm/for-3.13-rc3
    drm/tegra: Fixes for v3.13-rc3
    
    This assortment of patches fix a few build and sparse warnings and make
    sure to always return -EFAULT on copy_from_user() failures. Finally the
    upcasting from struct drm_crtc to struct tegra_dc is made safer to
    prevent potential segmentation faults.
    
  • v3.13-rc2
    dc1ccc48 · Linux 3.13-rc2 ·
    Linux 3.13-rc2
    
  • v3.12.2
    050dcf4a · Linux 3.12.2 ·
    This is the 3.12.2 stable release
    
  • v3.10.21
    43d8b1ef · Linux 3.10.21 ·
    This is the 3.10.21 stable release
    
  • v3.4.71
    71ea1738 · Linux 3.4.71 ·
    This is the 3.4.71 stable release
    
  • v3.11.10
    5ee54f38 · Linux 3.11.10 ·
    This is the 3.11.10 stable release
    
  • sound-3.13-rc2
    sound fixes for 3.13-rc2
    
    Quite a few HD-Audio fixes, a WUSB audio fix and a fix for FireWire
    audio.  The HD-audio part contains a couple of fixes for the generic
    parser, and these are the only intrusive fixes.  The rest are mostly
    device-specific fixes.
    
  • v3.2.53
    66c8d27b · Linux 3.2.53 ·
    This is the 3.2.53 stable release
    
  • gpio-v3.13-2
    GPIO fixes for the v3.13 series:
    
    - A big slew of documentation for the gpiod transition that
      happened in the merge window, no semantic effect, but we should
      provide proper documentation with the new API.
    
    - Fix flags related to the new API.
    
    - Fix to the find_chip_by_name() lookup function related to the
      new API.
    
    - Fix of_find_gpio() when not using device tree.
    
    - Bug fix for the TB10x direction setting.
    
    - Error path fixes from Dan Carpenter.
    
    - Nasty IRQdomain bug relating to taking an unitialized spinlock.
    
    - Minor fixes here and there.
    
  • pm+acpi-3.13-rc2
    b90f7b8a · Merge branch 'pm-tools' ·
    ACPI and power management fixes for 3.13-rc2
    
     - Fix for a recent regression in the Tegra cpufreq driver causing
       excess error messages to be printed from Stephen Warren.
    
     - ACPI-based device hotplug fix to prevent conflicting notify handlers
       from being installed for PCI host bridge objects.  From Toshi Kani.
    
     - ACPICA update to upstream version 20131115.  This contains bug fixes
       mostly (loop termination fix for the get AML length function, fixes
       related to namespace node removal and debug output).  From Bob Moore,
       Tomasz Nowicki and Lv Zheng.
    
     - Removal of incorrect inclusions of internal ACPICA header files by
       non-ACPICA code from Lv Zheng.
    
     - Fixes for the ACPI sysfs interface exposing tables to user space
       from Daisuke Hatayama and Jeremy Compostella.
    
     - Assorted ACPI and cpufreq cleanups from Sachin Kamat and Al Stone.
    
     - cpupower tool fix and man page from Thomas Renninger.
    
    /
    
  • iio-for-3.14a
    First set of new features, drivers and cleanups for IIO in the 3.14 cycle.
    This mostly consists of patches that didn't quite make the last cycle. Lots
    of interesting things under review currently.
    
    Core:
    - Add devm_iio_device_register/unregister.  I took some convincing on whether
      there would be many devices that really were simple enough to need no
      explicit actions on removal.  Turns out there are some.
    - Move some stray docs to above the relevant implemenation.
    - Drop a redundant repeated check on the fact the trigger has actually changed
      when there is a userspace attempt change it.
    
    Drivers:
    New drivers
    - Freescale MPL3115A2 Pressure / temperature sensor
    
    New functionality
    - hid_sensors: add sensitivity support.
    
    DT bindings
    - tsl2563
    - hmc5843
    
    Cleanups
    - Drop unused scan_type from viperboard adc driver.
    - devm_iio_device_register used in viperboard, ad5421, ad5755, adis16130,
      adxrs450, vcnl4000, adis16220, ad7816, lpc32xx, adt7316, adis16060, isl29018
      and ad2s1200.  Note that this was proposed in a number of other drivers
      and this revealed a number of missorderings in remove functions.  Also for
      now I have blocked this on any device that any hardware suspend suport on
      the basis that we probably want to power down devices if they have no driver
      support loaded.
    
  • fixes-for-3.13a
    First round of fixes for IIO in the 3.13 cycle.
    
    The usual mixed bag of fixes.
    
    * 3 cases where kconfig dependencies were missing.  We need to keep a closer
      eye on this in new drivers.
    
    * hid_sensors was abusing the iio_dev->trigger pointer.  We had a round
      of clearing this out some time ago but this driver clearly slipped through.
    
    * A misuse of the IIO_ST macro, in mcp3422, which we should really make a
      concertive effort to finish removing.
    
    * Avoid a double free introduced by recent buffer reference counting in the
      one driver that (quite reasonably!) does things differently (am335x)
    
    * A missing mutex_unlock in kxsd9 that means that driver has been non
      functional for some time and no one noticed (including me who for once
      actually has one of the supported devices).
    
    * An incorrect assumption about the parameters of sign_extend32 in mcp3422.
    
    So nothing controversial.  The only substantial patch is the hid_sensors
    one and that is actually just adding a new pointer to the devices private
    state then moving the code over to it.
    
  • regulator-v3.13-rc1
    regulator: Fixes for v3.13
    
    A bunch of fixes, a few driver specific ones and a framework fix for
    voltage enumeration on fixed voltage regulators which had previously
    worked but had been misplaced during some refactoring causing problems
    for users that needed to know the voltage.
    
  • v3.13-rc1
    6ce4eac1 · Linux 3.13-rc1 ·
    Linux 3.13-rc1
    
  • sound-fix2-3.13-rc1
    sound fixes #2 for 3.13-rc1
    
    A collection of small fixes in HD-audio quirks and runtime PM, ASoC
    rcar, abs8500 and other codecs.  Most of commits are for stable
    kernels, too.
    
  • kvm-3.13-2
  • v3.12.1
    6beb1be0 · Linux 3.12.1 ·
    This is the 3.12.1 stable release
    
  • v3.11.9
    e0cd0574 · Linux 3.11.9 ·
    This is the 3.11.9 stable release