Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • drm/dp-aux-for-3.15-rc1
    drm: DisplayPort AUX framework for v3.15-rc1
    
    This series of patches implements a small framework that abstracts away
    some of the functionality that the DisplayPort AUX channel provides. It
    comes with a set of generic helpers that use the driver implementations
    to reduce code duplication.
    
  • fixes-for-3.14d
    Fourth set of IIO fixes for the 3.14 kernel.
    
    A single line patch fixing a regression that was introduced in 3.13 in the
    reworking of the mxs touch screen and ADC drivers to be interrupt rather
    than polling driven.  It resulted in a stray double reporting of the release
    coordinate in the touch screen driver.  The bug lay in the adc side
    of the driver which left the statemachine in the wrong state.
    
  • qcom-drivers-for-3.15
  • v3.14-rc4
    cfbf8d48 · Linux 3.14-rc4 ·
    Linux 3.14-rc4
    
  • iio-for-3.15b
    Second round of IIO new driver, functionality and cleanups for the 3.15 series.
    
    There are a few fixes in here that might, earlier in a cycle, have gone
    to Greg as fixes. Given they are either minor or have never actually
    been observed as causing trouble (the locking bug in the event code) and
    are invasive, I have included them in this pull request, targeting the
    3.15 merge window instead.
    
    The rest are pretty uncontroversial new drivers, a handy little tool for
    the example code in our documentation and little cleanups.
    
    New drivers
    * Freescale Vybrid and i.MX6SLX ADC driver.
    * HID Sensor hub proximity sensors.
    * HID Sensor hub pressure sensors.
    * LPS25H Pressure sensors added to the ST micro pressure sensor driver.
    
    New functionality
    * lsiio tool.  This is added to the staging tree as we haven't yet moved
      the example code it sits with out.  Moving this code out is now a reasonably
      high priority but holding up this tool in the meantime did not seem
      worthwhile.
    * mag3110 - add missing scale factor for temperature output to userspace.
    
    Cleanups
    * Fix a bug in the event reporting in which a spin lock might be held over
      when a sleep occured.  A similar bug was found by Lars in the buffer code.
      It has not to our knowledge been observed as actually occuring and is
      a little too invasive to push out as a fix.
    * Drop the IIO_ST macro after clearing out all users.  This macro was a very
      bad idea leading to a number of bugs after it stopped covering all elements
      of the structure being assigned and people started making assumptions about
      what it did cover.  Glad to see it go!
    * Avoid applying extended name to shared attributes as it makes no sense.
      No in tree drivers were using the combination, hence not pushed out as
      a fix.
    * ad799x - move to devm_request_threaded_irq to reduce boilerplate clean up.
    * bma180 - make the low_pass_filter_3db_frequency info element shared rather
      than per attribute.  The old approach was valid but not as clean as it might
      be and was setting a bad example.  Hence the cleanup.
    * mxs-lradc - propogate the error code form a platform_get_irq call rather than
      eating it up by returning -EINVAL on all errors.
    * ad799x - typo fix in the copyright message. Either that or Michael was
      asserting a copyright that moved backwards in time by about a thousand years.
    * ad799x - use a regulator for vref rather than platform data.  The driver
      dates from just as the regulator framework was coming into common use so
      provides an alternative way of specifying the reference voltage.  We no
      longer need that approach so drop it in favour of a regulator only approach.
    * max1363 - some internal vref values were out by a small amount.  The effect
      would have been tiny and no one noticed hence not pushing this through as
      a fix.
    * core - replace some pointless goto error_ret (with no clean up) lines with
      direct returns.  This is my bad coding style so I'm glad to see it cleaned
      up.
    * core - avoid a kasprintf that just directly prints a string with no
      formatting elements.  This has always been there but Lars just noticed it.
      Oops.
    
  • asoc-v3.14-rc4
    ASoC: Fixes for v3.14
    
    A somewhat large set of fixes here due to the identification of some
    systematic problems with hard to use APIs in the subsystem.  Takashi did
    a lot of work to address the enumeration API which uncovered a number of
    off by one bugs caused by confusing APIs while Charles addressed issues
    in the locking around DAPM.
    
  • regulator-v3.14-rc4
    regulator: Fixes for v3.14
    
    Mostly unexciting driver fixes, plus one fix to lower the severity of
    the log message when we don't use an optional regulator - the fixes for
    ACPI system made this come up more often and it was correctly observed
    that it was causing undue concern for users.
    
  • v3.13.5
    dc0ead5d · Linux 3.13.5 ·
    This is the 3.13.5 stable release
    
  • v3.12.13
    1e91ad22 · Linux 3.12.13 ·
    This is the 3.12.13 stable release
    
  • v3.10.32
    61dde96f · Linux 3.10.32 ·
    This is the 3.10.32 stable release
    
  • v3.4.82
    26065241 · Linux 3.4.82 ·
    This is the 3.4.82 stable release
    
  • pm+acpi-3.14-rc4
    fee5ae96 · Merge branch 'pm-cpufreq' ·
    ACPI and power management fixes for 3.14-rc4
    
     - Fix for a recent probing regression in the nouveau driver introduced
       by an ACPI change related to the handling of _DSM from Jiang Liu.
    
     - Fix for a dock station sysfs attribute that stopped working correctly
       after recent changes in the ACPI core.
    
     - cpufreq fix taking care of broken code related to CPU removal and
       overlooked by a previous recent fix in that area.  From Viresh Kumar.
    
     - Two intel_pstate fixes related to Baytrail support added during
       the 3.13 cycle (candidates for -stable) from Dirk Brandewie.
    
     - ACPI video fix removing duplicate brightness values from the _BCL
       table which makes its user space interface behave sanely.  From
       Hans de Goede.
    
     - Fix for the powernow-k8 cpufreq driver making it initialize its
       per-CPU data structures correctly from Srivatsa S. Bhat.
    
     - Fix for an obscure memory leak in the ACPI PCI interrupt allocation
       code (related to ISA) from Tomasz Nowicki.
    
     - ACPI video blacklist changes moving several systems that should
       use the native backlight interface instead of the ACPI one from
       the general ACPI _OSI blacklist the the ACPI video driver's
       blacklist where they belong.  This consists of an ACPI video
       driver update from Aaron Lu and a revert of a previous commit
       adding systems to the ACPI _OSI blacklist requested by Takashi Iwai.
    
     - Several fixes for build issues in ACPI drivers occuring when
       CONFIG_PM_SLEEP is unset from Shuah Khan.
    
     - Fix for an sscanf() format string in the ACPI Smart Battery
       Subsystem (SBS) driver from Luis G.F.
    
    /
    
  • iommu-fixes-v3.14-rc3
    IOMMU Fixes for Linux v3.14-rc3
    
    The fixes are only for the ARM-SMMU driver. Here is the summary from
    Will Deacon:
    
      - Andreas Herrmann took the driver for a run with a real SATA
        controller, which caused the new mutex-based locking to explode
        since we require mappings in atomic context
    
      - Yifan fixed an issue with the page table creation, which then caused
        breakages with the way in which we flush descriptors out to the
        table walker
    
      - I ran the driver on a system where the SMMU is hooked into a
        coherent interconnect for table walks, and noticed a shareability
        mismatch between the CPU and the SMMU
    
    These issues are all fixed here and have been tested on both arm and
    arm64 based systems.
    
    Besides that I put a fix on-top to make the spinlock irq-safe, so that the
    code-paths can be used in the DMA-API.
    
  • v3.13.4
    93ee5dcd · Linux 3.13.4 ·
    This is the 3.13.4 stable release
    
  • v3.12.12
    00397abb · Linux 3.12.12 ·
    This is the 3.12.12 stable release
    
  • v3.10.31
    a43e02cf · Linux 3.10.31 ·
    This is the 3.10.31 stable release
    
  • v3.4.81
    dd12c7c4 · Linux 3.4.81 ·
    This is the 3.4.81 stable release
    
  • iio-fixes-for-3.14c
    Third round of fixes for IIO in the 3.14 cycle.
    
    Fixes to 2 Capella light sensor drivers where the units of the integration
    time reported to userspace were out be a factor of a thousand.
    These patches are as large as they are purely due to a variable rename
    tied up with the incorrect scale.  The actual change is only a couple of lines.
    
    1 patch dropping L3GD20H from the st gyroscope driver.  It never actually
    worked as the address set is different from any others supported by the
    driver currently.   An additional patch enables correct support for this
    part but is too large to sensibly apply as a fix to some support that never
    actually allowed the driver to be successfully probed on this part.
    
  • qcom-dt-for-3.15
    Qualcomm ARM Based Device Tree Updates for v3.15
    
    * Added device tree nodes to enable SMP on msm8660, msm8960, and msm8974
    * Added Random Number Generator DT nodes for msm8974 and msm8960 SoCs
    
  • sound-3.14-rc4
    sound fixes for 3.14-rc4
    
    This time we got a slightly higher volume than previous times,
    but all device-specific good fixes.  Noticeable changes are fixes in
    davinci, and the removal of open-codes in HD-audio ca0132 driver.
    The rest are all small fixes and/or quirks.