remarkable-linux/sound/soc/codecs
Linus Torvalds 58cf279aca GPIO bulk updates for the v4.5 kernel cycle:
Infrastructural changes:
 
 - In struct gpio_chip, rename the .dev node to .parent to better reflect
   the fact that this is not the GPIO struct device abstraction. We will
   add that soon so this would be totallt confusing.
 
 - It was noted that the driver .get_value() callbacks was
   sometimes reporting negative -ERR values to the gpiolib core, expecting
   them to be propagated to consumer gpiod_get_value() and gpio_get_value()
   calls. This was not happening, so as there was a mess of drivers
   returning negative errors and some returning "anything else than zero"
   to indicate that a line was active. As some would have bit 31 set to
   indicate "line active" it clashed with negative error codes. This is
   fixed by the largeish series clamping values in all drivers with
   !!value to [0,1] and then augmenting the code to propagate error codes
   to consumers. (Includes some ACKed patches in other subsystems.)
 
 - Add a void *data pointer to struct gpio_chip. The container_of() design
   pattern is indeed very nice, but we want to reform the struct gpio_chip
   to be a non-volative, stateless business, and keep states internal to
   the gpiolib to be able to hold on to the state when adding a proper
   userspace ABI (character device) further down the road. To achieve this,
   drivers need a handle at the internal state that is not dependent on
   their struct gpio_chip() so we add gpiochip_add_data() and
   gpiochip_get_data() following the pattern of many other subsystems.
   All the "use gpiochip data pointer" patches transforms drivers to this
   scheme.
 
 - The Generic GPIO chip header has been merged into the general
   <linux/gpio/driver.h> header, and the custom header for that removed.
   Instead of having a separate mm_gpio_chip struct for these generic
   drivers, merge that into struct gpio_chip, simplifying the code and
   removing the need for separate and confusing includes.
 
 Misc improvements:
 
 - Stabilize the way GPIOs are looked up from the ACPI legacy
   specification.
 
 - Incremental driver features for PXA, PCA953X, Lantiq (patches from the
   OpenWRT community), RCAR, Zynq, PL061, 104-idi-48
 
 New drivers:
 
 - Add a GPIO chip to the ALSA SoC AC97 driver.
 
 - Add a new Broadcom NSP SoC driver (this lands in the pinctrl dir, but
   the branch is merged here too to account for infrastructural changes).
 
 - The sx150x driver now supports the sx1502.
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1
 
 iQIcBAABAgAGBQJWmsZhAAoJEEEQszewGV1ztq0QAJ1KbNOpmf/s3INkOH4r771Z
 WIrNEsmwwLIAryo8gKNOM0H1zCwhRUV7hIE5jYWgD6JvjuAN6vobMlZAq21j6YpB
 pKgqnI5DuoND450xjb8wSwGQ5NTYp1rFXNmwCrtyTjOle6AAW+Kp2cvVWxVr77Av
 uJinRuuBr9GOKW/yYM1Fw/6EPjkvvhVOb+LBguRyVvq0s5Peyw7ZVeY1tjgPHJLn
 oSZ9dmPUjHEn91oZQbtfro3plOObcxdgJ8vo//pgEmyhMeR8XjXES+aUfErxqWOU
 PimrZuMMy4cxnsqWwh3Dyxo7KSWfJKfSPRwnGwc/HgbHZEoWxOZI1ezRtGKrRQtj
 vubxp5dUBA5z66TMsOCeJtzKVSofkvgX2Wr/Y9jKp5oy9cHdAZv9+jEHV1pr6asz
 Tas97MmmO77XuRI/GPDqVHx8dfa15OIz9s92+Gu64KxNzVxTo4+NdoPSNxkbCILO
 FKn7EmU3D0OjmN2NJ9GAURoFaj3BBUgNhaxacG9j2bieyh+euuUHRtyh2k8zXR9y
 8OnY1UOrTUYF8YIq9pXZxMQRD/lqwCNHvEjtI6BqMcNx4MptfTL+FKYUkn/SgCYk
 QTNV6Ui+ety5D5aEpp5q0ItGsrDJ2LYSItsS+cOtMy2ieOxbQav9NWwu7eI3l5ly
 gwYTZjG9p9joPXLW0E3g
 =63rR
 -----END PGP SIGNATURE-----

Merge tag 'gpio-v4.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio

Pull GPIO updates from Linus Walleij:
 "Here is the bulk of GPIO changes for v4.5.

  Notably there are big refactorings mostly by myself, aimed at getting
  the gpio_chip into a shape that makes me believe I can proceed to
  preserve state for a proper userspace ABI (character device) that has
  already been proposed once, but resulted in the feedback that I need
  to go back and restructure stuff.  So I've been restructuring stuff.
  On the way I ran into brokenness (return code from the get_value()
  callback) and had to fix it.  Also, refactored generic GPIO to be
  simpler.

  Some of that is still waiting to trickle down from the subsystems all
  over the kernel that provide random gpio_chips, I've touched every
  single GPIO driver in the kernel now, oh man I didn't know I was
  responsible for so much...

  Apart from that we're churning along as usual.

  I took some effort to test and retest so it should merge nicely and we
  shook out a couple of bugs in -next.

  Infrastructural changes:

   - In struct gpio_chip, rename the .dev node to .parent to better
     reflect the fact that this is not the GPIO struct device
     abstraction.  We will add that soon so this would be totallt
     confusing.

   - It was noted that the driver .get_value() callbacks was sometimes
     reporting negative -ERR values to the gpiolib core, expecting them
     to be propagated to consumer gpiod_get_value() and gpio_get_value()
     calls.  This was not happening, so as there was a mess of drivers
     returning negative errors and some returning "anything else than
     zero" to indicate that a line was active.  As some would have bit
     31 set to indicate "line active" it clashed with negative error
     codes.  This is fixed by the largeish series clamping values in all
     drivers with !!value to [0,1] and then augmenting the code to
     propagate error codes to consumers.  (Includes some ACKed patches
     in other subsystems.)

   - Add a void *data pointer to struct gpio_chip.  The container_of()
     design pattern is indeed very nice, but we want to reform the
     struct gpio_chip to be a non-volative, stateless business, and keep
     states internal to the gpiolib to be able to hold on to the state
     when adding a proper userspace ABI (character device) further down
     the road.  To achieve this, drivers need a handle at the internal
     state that is not dependent on their struct gpio_chip() so we add
     gpiochip_add_data() and gpiochip_get_data() following the pattern
     of many other subsystems.  All the "use gpiochip data pointer"
     patches transforms drivers to this scheme.

   - The Generic GPIO chip header has been merged into the general
     <linux/gpio/driver.h> header, and the custom header for that
     removed.  Instead of having a separate mm_gpio_chip struct for
     these generic drivers, merge that into struct gpio_chip,
     simplifying the code and removing the need for separate and
     confusing includes.

  Misc improvements:

   - Stabilize the way GPIOs are looked up from the ACPI legacy
     specification.

   - Incremental driver features for PXA, PCA953X, Lantiq (patches from
     the OpenWRT community), RCAR, Zynq, PL061, 104-idi-48

  New drivers:

   - Add a GPIO chip to the ALSA SoC AC97 driver.

   - Add a new Broadcom NSP SoC driver (this lands in the pinctrl dir,
     but the branch is merged here too to account for infrastructural
     changes).

   - The sx150x driver now supports the sx1502"

* tag 'gpio-v4.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: (220 commits)
  gpio: generic: make bgpio_pdata always visible
  gpiolib: fix chip order in gpio list
  gpio: mpc8xxx: Do not use gpiochip_get_data() in mpc8xxx_gpio_save_regs()
  gpio: mm-lantiq: Do not use gpiochip_get_data() in ltq_mm_save_regs()
  gpio: brcmstb: Allow building driver for BMIPS_GENERIC
  gpio: brcmstb: Set endian flags for big-endian MIPS
  gpio: moxart: fix build regression
  gpio: xilinx: Do not use gpiochip_get_data() in xgpio_save_regs()
  leds: pca9532: use gpiochip data pointer
  leds: tca6507: use gpiochip data pointer
  hid: cp2112: use gpiochip data pointer
  bcma: gpio: use gpiochip data pointer
  avr32: gpio: use gpiochip data pointer
  video: fbdev: via: use gpiochip data pointer
  gpio: pch: Optimize pch_gpio_get()
  Revert "pinctrl: lantiq: Implement gpio_chip.to_irq"
  pinctrl: nsp-gpio: use gpiochip data pointer
  pinctrl: vt8500-wmt: use gpiochip data pointer
  pinctrl: exynos5440: use gpiochip data pointer
  pinctrl: at91-pio4: use gpiochip data pointer
  ...
2016-01-17 12:32:01 -08:00
..
88pm860x-codec.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
88pm860x-codec.h
ab8500-codec.c ASoC: ab8500: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE 2015-08-05 13:16:16 +01:00
ab8500-codec.h
ac97.c
ad193x-i2c.c ASoC: ad193x: add support to ad1934 2015-10-05 17:42:49 +01:00
ad193x-spi.c sound updates for 4.4-rc1 2015-11-06 11:04:07 -08:00
ad193x.c ASoC: ad193x: Drop .volatile_reg implementation 2015-10-20 16:59:29 +01:00
ad193x.h ASoC: ad193x: add support to ad1934 2015-10-05 17:42:49 +01:00
ad1836.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
ad1836.h
ad1980.c ASoC: ad1980: Use core AC'97 reset helper 2015-07-23 17:33:31 +01:00
ad73311.c
ad73311.h
adau17x1.c
adau17x1.h
adau1373.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
adau1373.h
adau1701.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
adau1701.h
adau1761-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
adau1761-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
adau1761.c Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ad1836', 'asoc/topic/ada1977', 'asoc/topic/adau1701' and 'asoc/topic/adau17x1' into asoc-next 2015-06-05 18:54:47 +01:00
adau1761.h
adau1781-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
adau1781-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
adau1781.c Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ad1836', 'asoc/topic/ada1977', 'asoc/topic/adau1701' and 'asoc/topic/adau17x1' into asoc-next 2015-06-05 18:54:47 +01:00
adau1781.h
adau1977-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
adau1977-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
adau1977.c Merge remote-tracking branches 'asoc/topic/adau1977', 'asoc/topic/adav80x', 'asoc/topic/arizona' and 'asoc/topic/atmel' into asoc-next 2015-06-05 18:54:49 +01:00
adau1977.h
adav80x.c ASoC: adav80x: Use snd_pcm_hw_constraint_single() 2015-10-21 14:24:34 +02:00
adav80x.h
adav801.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
adav803.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ads117x.c
ak4104.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
ak4535.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ak4535.h
ak4554.c
ak4613.c ASoC: ak4613: tidyup vendor prefix from ak4613 to asahi-kasei 2015-11-20 18:06:44 +00:00
ak4641.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ak4641.h
ak4642.c ASoC: ak4642: exchange macro name to avoid redefinition 2015-09-16 20:40:27 +01:00
ak4671.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ak4671.h
ak5386.c
alc5623.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
alc5623.h
alc5632.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
alc5632.h
arizona.c Merge remote-tracking branch 'asoc/topic/arizona' into asoc-next 2016-01-11 13:54:29 +00:00
arizona.h ASoC: wm5110: Provide basic hookup for voice control 2015-12-23 00:20:50 +00:00
bt-sco.c
cq93vc.c
cs35l32.c Merge remote-tracking branches 'asoc/topic/rcar', 'asoc/topic/reg-default', 'asoc/topic/rl6231', 'asoc/topic/rockchip' and 'asoc/topic/rt286' into asoc-next 2015-08-30 15:55:54 +01:00
cs35l32.h ASoC: cs35l32: Fix define for CS35L32_SDOUT_3ST 2015-07-23 16:01:56 +01:00
cs42l51-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
cs42l51.c
cs42l51.h
cs42l52.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
cs42l52.h
cs42l56.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
cs42l56.h
cs42l73.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
cs42l73.h
cs42xx8-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
cs42xx8.c ASoC: cs42xx8: Setup of_match_table 2015-07-07 13:35:13 +01:00
cs42xx8.h ASoC: cs42xx8: Setup of_match_table 2015-07-07 13:35:13 +01:00
cs47l24.c ASoC: cs47l24: Add driver for Cirrus Logic CS47L24 and WM1831 codecs 2015-11-16 09:50:49 +00:00
cs47l24.h ASoC: cs47l24: Add driver for Cirrus Logic CS47L24 and WM1831 codecs 2015-11-16 09:50:49 +00:00
cs4265.c Merge remote-tracking branches 'asoc/topic/const', 'asoc/topic/cs35l32', 'asoc/topic/cs4265' and 'asoc/topic/cs42l52' into asoc-next 2015-08-30 15:52:59 +01:00
cs4265.h
cs4270.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
cs4271-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
cs4271-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
cs4271.c
cs4271.h
cs4349.c ASoC: cs4349: fix platform_no_drv_owner.cocci warnings 2015-08-25 07:53:24 +01:00
cs4349.h ASoC: cs4349: Drop platform data support 2015-07-20 18:18:46 +01:00
cx20442.c
cx20442.h
da732x.c Merge remote-tracking branches 'asoc/topic/max98090', 'asoc/topic/max98095', 'asoc/topic/max98357a', 'asoc/topic/max9877' and 'asoc/topic/max98925' into asoc-next 2015-08-30 15:54:57 +01:00
da732x.h
da732x_reg.h
da7210.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
da7213.c ASoC: da7213: Add support to handle mclk data provided to driver 2015-10-07 15:11:34 +01:00
da7213.h ASoC: da7213: Add support to handle mclk data provided to driver 2015-10-07 15:11:34 +01:00
da7218.c ASoC: da7218: Correct BCLK inversion for DSP DAI format mode 2016-01-05 18:27:13 +00:00
da7218.h ASoC: da7218: Add da7218 codec driver 2015-11-30 12:24:12 +00:00
da7219-aad.c ASoC: codecs: Add da7219 codec driver 2015-10-02 18:11:27 +01:00
da7219-aad.h ASoC: codecs: Add da7219 codec driver 2015-10-02 18:11:27 +01:00
da7219.c ASoC: da7219: Correct BCLK inversion for DSP DAI format mode 2016-01-05 16:07:49 +00:00
da7219.h ASoC: da7219: Remove support for 32KHz PLL mode 2015-12-23 00:12:00 +00:00
da9055.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
dmic.c
es8328-i2c.c
es8328-spi.c
es8328.c ASoC: es8328: Fix shifts for mixer switches 2015-12-12 22:06:20 +00:00
es8328.h ASoC: es8328: Fix deemphasis values 2015-12-09 20:42:19 +00:00
gtm601.c ASoC: gtm601: Constify soc_codec_dev_gtm601 2015-07-07 14:23:53 +01:00
hdac_hdmi.c ASoC: hdac_hdmi: remove unused hdac_hdmi_query_pin_connlist 2016-01-11 13:04:52 +00:00
ics43432.c ASoC: ics43432: Fix build errors 2015-08-28 17:17:29 +01:00
inno_rk3036.c ASoC: rk3036: fix platform_no_drv_owner.cocci warnings 2015-11-23 14:36:58 +00:00
inno_rk3036.h ASoC: rk3036: Inno codec driver for RK3036 SoC 2015-11-23 14:36:53 +00:00
isabelle.c Merge remote-tracking branches 'asoc/topic/max98090', 'asoc/topic/max98095', 'asoc/topic/max98357a', 'asoc/topic/max9877' and 'asoc/topic/max98925' into asoc-next 2015-08-30 15:54:57 +01:00
isabelle.h
jz4740.c ASoC: jz4740: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE 2015-08-05 13:22:47 +01:00
Kconfig Merge remote-tracking branch 'asoc/topic/pcm1792a' into asoc-next 2016-01-11 13:54:31 +00:00
l3.c
lm4857.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
lm49453.c Merge remote-tracking branches 'asoc/topic/max98090', 'asoc/topic/max98095', 'asoc/topic/max98357a', 'asoc/topic/max9877' and 'asoc/topic/max98925' into asoc-next 2015-08-30 15:54:57 +01:00
lm49453.h
Makefile Merge remote-tracking branch 'asoc/topic/pcm1792a' into asoc-next 2016-01-11 13:54:31 +00:00
max9768.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max9850.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max9850.h
max9877.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max9877.h
max98088.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max98088.h ASoC: codecs: max98088: fix typo in constant 2015-07-07 13:14:15 +01:00
max98090.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max98090.h ASoC: max98090: Fix sequencing when starting additional routes 2015-08-10 12:57:35 +01:00
max98095.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
max98095.h
max98357a.c ASoC: max98357a: Add ACPI ID for Maxim 2015-12-18 08:23:57 +00:00
max98925.c Merge remote-tracking branches 'asoc/topic/txx9', 'asoc/topic/uda134x', 'asoc/topic/ux500' and 'asoc/topic/width' into asoc-next 2015-08-30 15:58:18 +01:00
max98925.h
mc13783.c ASoC: Constify snd_soc_dai_ops variables 2015-07-15 12:12:46 +01:00
mc13783.h
ml26124.c Merge branches 'topic/owner' and 'topic/reg-default' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-max9877 2015-07-16 21:35:01 +01:00
ml26124.h
nau8825.c ASoC: nau8825: add pm function 2015-11-16 17:43:47 +00:00
nau8825.h ASoC: nau8825: Add FLL configuration 2015-10-23 01:17:38 +09:00
pcm179x.c ASoC: pcm1792a: Rename pcm1792a to pcm179x 2016-01-10 12:01:12 +00:00
pcm179x.h ASoC: pcm1792a: Rename pcm1792a to pcm179x 2016-01-10 12:01:12 +00:00
pcm512x-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
pcm512x-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
pcm512x.c ASoC: Use params_width() at appropriate places 2015-07-24 18:31:31 +01:00
pcm512x.h
pcm1681.c Merge remote-tracking branch 'asoc/topic/ssm4567' into asoc-next 2015-08-30 15:52:16 +01:00
pcm3008.c
pcm3008.h
pcm3168a-i2c.c ASoC: pcm3168a: Add driver for pcm3168a codec 2015-12-12 22:39:59 +00:00
pcm3168a-spi.c ASoC: pcm3168a: Add driver for pcm3168a codec 2015-12-12 22:39:59 +00:00
pcm3168a.c ASoC: pcm3168a: Add driver for pcm3168a codec 2015-12-12 22:39:59 +00:00
pcm3168a.h ASoC: pcm3168a: Add driver for pcm3168a codec 2015-12-12 22:39:59 +00:00
rl6231.c ASoC: rl6231: fix range of DMIC clock 2015-11-16 13:17:01 +00:00
rl6231.h ASoC: Add function "rl6231_get_pre_div" to correct the dmic clock calculation 2015-08-05 10:42:35 +01:00
rl6347a.c ASoC: rl6347a: Clean up unneeded inclusion of header files 2015-09-24 10:30:47 -07:00
rl6347a.h ASoC: rl6347a: Clean up unneeded inclusion of header files 2015-09-24 10:30:47 -07:00
rt286.c ASoC: rt286: set combo jack for Skylake 2015-11-17 11:43:04 +00:00
rt286.h
rt298.c ASoC: rt298: fix remove unnedded clk setting 2015-11-16 10:11:47 +00:00
rt298.h ASoC: add rt298 codec driver 2015-07-09 12:00:11 +01:00
rt5616.c ASoC: rt5616: rename some alsa control names 2015-12-23 00:03:10 +00:00
rt5616.h ASoC: rt5616: add rt5616 codec driver 2015-12-19 12:02:18 +00:00
rt5631.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
rt5631.h
rt5640.c ASoC: Intel: Atom: Add support for HP ElitePad 1000 G2 2016-01-05 13:06:22 +00:00
rt5640.h ASoC: rt5640: add ASRC support 2016-01-05 12:32:22 +00:00
rt5645.c Merge remote-tracking branch 'asoc/topic/rt5645' into asoc-next 2016-01-11 13:54:32 +00:00
rt5645.h ASoC: rt5645: add sys clk detection 2015-12-30 16:35:07 +00:00
rt5651.c ASoC: rt5651: add ACPI and OF support 2015-12-23 12:21:14 +00:00
rt5651.h
rt5659.c ASoC: rt5659: add rt5659 codec driver 2015-11-18 12:55:25 +00:00
rt5659.h ASoC: rt5659: add rt5659 codec driver 2015-11-18 12:55:25 +00:00
rt5670-dsp.h
rt5670.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
rt5670.h ASoC: rt5670: fix wrong bit def for pll src 2015-11-17 11:45:00 +00:00
rt5677-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
rt5677-spi.h ASoC: rt5677: Allow arbitrary block read/write via SPI 2015-08-25 17:34:30 +01:00
rt5677.c GPIO bulk updates for the v4.5 kernel cycle: 2016-01-17 12:32:01 -08:00
rt5677.h ASoC: rt5677: Switch to use descriptor-based gpiod API 2015-07-07 13:34:03 +01:00
sgtl5000.c ASoC: sgtl5000: fix VAG power up timing 2015-12-17 12:13:40 +00:00
sgtl5000.h ASoC: sgtl5000: Fix up define for SGTL5000_SMALL_POP 2015-07-22 10:49:02 +01:00
si476x.c ASoC: Constify snd_soc_dai_ops variables 2015-07-15 12:12:46 +01:00
sigmadsp-i2c.c
sigmadsp-regmap.c
sigmadsp.c
sigmadsp.h
sirf-audio-codec.c ASoC: sirf-audio-codec: Staticise local symbols 2015-07-15 12:32:56 +01:00
sirf-audio-codec.h
sn95031.c
sn95031.h
spdif_receiver.c
spdif_transmitter.c
ssm2518.c ASoC: ssm2518: Use a signed return type for ssm2518_lookup_mcs() 2015-12-22 23:59:25 +00:00
ssm2518.h
ssm2602-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ssm2602-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
ssm2602.c ASoC: ssm2602: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE 2015-08-05 13:23:35 +01:00
ssm2602.h
ssm4567.c ASoC: ssm4567: Add sense support 2015-08-14 17:29:15 +01:00
sta32x.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
sta32x.h
sta350.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
sta350.h
sta529.c Merge remote-tracking branches 'asoc/topic/ssm2518', 'asoc/topic/sta529', 'asoc/topic/sti' and 'asoc/topic/sti-sas' into asoc-next 2015-08-30 15:57:13 +01:00
stac9766.c ASoC: stac9766: Use core reset helper 2015-07-23 17:33:34 +01:00
stac9766.h
sti-sas.c ASoC: sti-sas: fix x86 compilation issue. 2015-07-16 09:59:23 +01:00
tas571x.c ASoC: tas571x: Replace direct snd_soc_codec dapm field access 2015-07-07 14:54:27 +01:00
tas571x.h
tas2552.c ASoC: tas2552: fix dBscale-min declaration 2015-10-06 11:53:46 +01:00
tas2552.h ASoC: tas2552: Fix off-by-one for max_register setting 2015-07-23 16:46:31 +01:00
tas5086.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
tfa9879.c Merge branches 'topic/owner' and 'topic/reg-default' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-max9877 2015-07-16 21:35:01 +01:00
tfa9879.h
tlv320aic3x.c ASoC: Updates for v4.4 2015-10-26 11:15:54 +09:00
tlv320aic3x.h
tlv320aic23-i2c.c
tlv320aic23-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
tlv320aic23.c
tlv320aic23.h
tlv320aic26.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
tlv320aic26.h
tlv320aic31xx.c Merge remote-tracking branches 'asoc/topic/const', 'asoc/topic/cs35l32', 'asoc/topic/cs4265' and 'asoc/topic/cs42l52' into asoc-next 2015-08-30 15:52:59 +01:00
tlv320aic31xx.h
tlv320aic32x4.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
tlv320aic32x4.h
tlv320dac33.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
tlv320dac33.h
tpa6130a2.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
tpa6130a2.h
ts3a227e.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
ts3a227e.h
twl4030.c ASoC: twl4030: Use snd_pcm_hw_constraint_single() 2015-10-21 14:24:44 +02:00
twl6040.c ASoC: twl6040, fsl: use to_platform_device 2015-12-24 19:42:42 +00:00
twl6040.h
uda134x.c ASoC: uda134x: Use snd_pcm_hw_constraint_single() 2015-10-21 14:24:52 +02:00
uda134x.h ASoC: uda134x: Convert to regmap 2015-07-13 11:51:35 +01:00
uda1380.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
uda1380.h
wl1273.c ASoC: wl1273: Use snd_pcm_hw_constraint_single() 2015-10-21 14:25:21 +02:00
wl1273.h
wm0010.c Merge remote-tracking branches 'spi/topic/omap-100k', 'spi/topic/omap-uwire', 'spi/topic/owner', 'spi/topic/pxa' and 'spi/topic/pxa2xx' into spi-next 2015-11-04 11:02:12 +00:00
wm1250-ev1.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
wm2000.c ASoC: wm2000: a couple harmless underflows 2015-10-22 13:59:11 +01:00
wm2000.h
wm2200.c Merge remote-tracking branches 'asoc/topic/txx9', 'asoc/topic/uda134x', 'asoc/topic/ux500' and 'asoc/topic/width' into asoc-next 2015-08-30 15:58:18 +01:00
wm2200.h
wm5100-tables.c
wm5100.c gpio: change member .dev to .parent 2015-11-19 09:24:35 +01:00
wm5100.h
wm5102.c ASoC: arizona: Fix error path in codec probe 2015-07-10 17:02:42 +01:00
wm5102.h
wm5110.c Merge remote-tracking branches 'asoc/topic/adsp' and 'asoc/topic/amd' into asoc-next 2016-01-11 13:54:32 +00:00
wm5110.h
wm8350.c ASoC: wm8350: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE 2015-08-05 13:23:52 +01:00
wm8350.h
wm8400.c ASoC: wm8400: Don't use range container for TLV with one entry 2015-08-05 13:23:56 +01:00
wm8400.h
wm8510.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8510.h
wm8523.c Merge remote-tracking branches 'asoc/topic/fsl-spdif', 'asoc/topic/fsl-ssi', 'asoc/topic/gtm601', 'asoc/topic/ics43432' and 'asoc/topic/ids' into asoc-next 2015-08-30 15:54:15 +01:00
wm8523.h
wm8580.c Merge remote-tracking branches 'asoc/topic/fsl-spdif', 'asoc/topic/fsl-ssi', 'asoc/topic/gtm601', 'asoc/topic/ics43432' and 'asoc/topic/ids' into asoc-next 2015-08-30 15:54:15 +01:00
wm8580.h
wm8711.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8711.h
wm8727.c
wm8728.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8728.h
wm8731.c sound updates for 4.4-rc1 2015-11-06 11:04:07 -08:00
wm8731.h
wm8737.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8737.h
wm8741.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8741.h
wm8750.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8750.h
wm8753.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8753.h
wm8770.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8770.h
wm8776.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8776.h
wm8782.c
wm8804-i2c.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
wm8804-spi.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8804.c ASoC: wm8804: Drop duplicate const 2015-07-29 15:05:08 +01:00
wm8804.h
wm8900.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8900.h
wm8903.c GPIO bulk updates for the v4.5 kernel cycle: 2016-01-17 12:32:01 -08:00
wm8903.h
wm8904.c ASoC: wm8904: Make undocumented registers non-readable 2015-11-18 13:19:05 +00:00
wm8904.h
wm8940.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
wm8940.h
wm8955.c ASoC: wm8955: harmless underflow in wm8955_put_deemph() 2015-10-22 13:57:39 +01:00
wm8955.h
wm8958-dsp2.c
wm8960.c Merge remote-tracking branch 'asoc/topic/wm8960' into asoc-next 2016-01-11 13:54:40 +00:00
wm8960.h ASoC: wm8960: update pll and clock setting function 2015-08-11 17:11:52 +01:00
wm8961.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm8961.h
wm8962.c GPIO bulk updates for the v4.5 kernel cycle: 2016-01-17 12:32:01 -08:00
wm8962.h
wm8971.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
wm8971.h
wm8974.c Merge remote-tracking branches 'asoc/topic/wm8962', 'asoc/topic/wm8974' and 'asoc/topic/wm9713' into asoc-next 2015-12-23 00:23:54 +00:00
wm8974.h
wm8978.c ASoC: drivers: Drop owner assignment from i2c_driver 2015-07-15 12:50:43 +01:00
wm8978.h
wm8983.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8983.h
wm8985.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8985.h
wm8988.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8988.h
wm8990.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm8990.h
wm8991.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm8991.h
wm8993.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm8993.h
wm8994.c ASoC: wm8994: fix add dynamic path error 2015-08-20 11:06:26 -07:00
wm8994.h
wm8995.c spi: Drop owner assignment from spi_drivers 2015-10-28 10:30:17 +09:00
wm8995.h
wm8996.c gpio: change member .dev to .parent 2015-11-19 09:24:35 +01:00
wm8996.h
wm8997.c ASoC: arizona: Implement stability check for LHPF coefficients 2015-07-07 13:15:12 +01:00
wm8997.h
wm8998.c ASoC: wm8998: Remove duplicated consts 2015-11-16 09:48:52 +00:00
wm8998.h ASoC: wm8998: Initial WM8998 codec driver 2015-10-02 17:51:34 +01:00
wm9081.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm9081.h
wm9090.c Merge remote-tracking branches 'asoc/topic/tas2552', 'asoc/topic/tas5086', 'asoc/topic/tegra', 'asoc/topic/tlv' and 'asoc/topic/topology' into asoc-next 2015-08-30 15:57:34 +01:00
wm9090.h
wm9705.c ASoC: wm9705: Use core AC'97 reset helper 2015-07-23 17:33:37 +01:00
wm9705.h
wm9712.c ASoC: wm9712: Use core AC'97 reset helper 2015-07-23 17:33:40 +01:00
wm9712.h
wm9713.c ASoC: wm9713: use snd_soc_*() calls to update ac97 registers 2015-11-16 10:18:30 +00:00
wm9713.h ASoC: wm9713: Use core AC'97 reset helper 2015-07-23 17:33:43 +01:00
wm_adsp.c ASoC: wm_adsp: Pull data through compressed read 2016-01-06 17:44:17 +00:00
wm_adsp.h ASoC: wm_adsp: Pull data through compressed read 2016-01-06 17:44:17 +00:00
wm_hubs.c ASoC: wm_hubs: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE 2015-08-05 13:24:42 +01:00
wm_hubs.h
wmfw.h