linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] AC'97 gpiochip
@ 2015-12-03  0:12 Mark Brown
  2015-12-07 12:34 ` Linus Walleij
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2015-12-03  0:12 UTC (permalink / raw)
  To: Linus Walleij; +Cc: alsa-devel, Liam Girdwood, linux-gpio

[-- Attachment #1: Type: text/plain, Size: 838 bytes --]

The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:

  Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-ac97-gpio

for you to fetch changes up to 9bf5c3d11f1fbaf43399d189f05fb20ceb46ee5d:

  ASoC: ac97: add gpio chip (2015-11-18 18:08:54 +0000)

----------------------------------------------------------------
ASoC: Add a GPIO chip for AC'97

GPIOs are part of the AC'97 spec, enable their use on embedded platforms
using AC'97.

----------------------------------------------------------------
Robert Jarzmik (1):
      ASoC: ac97: add gpio chip

 include/sound/ac97_codec.h |   3 ++
 sound/soc/soc-ac97.c       | 125 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 128 insertions(+)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] AC'97 gpiochip
  2015-12-03  0:12 [GIT PULL] AC'97 gpiochip Mark Brown
@ 2015-12-07 12:34 ` Linus Walleij
  0 siblings, 0 replies; 2+ messages in thread
From: Linus Walleij @ 2015-12-07 12:34 UTC (permalink / raw)
  To: Mark Brown
  Cc: alsa-devel@alsa-project.org, Liam Girdwood,
	linux-gpio@vger.kernel.org

On Thu, Dec 3, 2015 at 1:12 AM, Mark Brown <broonie@kernel.org> wrote:

> The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:
>
>   Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git tags/asoc-ac97-gpio
>
> for you to fetch changes up to 9bf5c3d11f1fbaf43399d189f05fb20ceb46ee5d:
>
>   ASoC: ac97: add gpio chip (2015-11-18 18:08:54 +0000)
>
> ----------------------------------------------------------------
> ASoC: Add a GPIO chip for AC'97

Pulled to the GPIO devel branch, then I immediately applied this on top:

>From a1eb9d5751220433998ae2e66216288161b1355b Mon Sep 17 00:00:00 2001
From: Linus Walleij <linus.walleij@linaro.org>
Date: Mon, 7 Dec 2015 13:32:28 +0100
Subject: [PATCH] ASoC: ac97: fix parent assignment

Upstream GPIO has substituted .dev for .parent in struct gpio_chip.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 sound/soc/soc-ac97.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/soc-ac97.c b/sound/soc/soc-ac97.c
index ae563e379a72..a2012652f212 100644
--- a/sound/soc/soc-ac97.c
+++ b/sound/soc/soc-ac97.c
@@ -142,7 +142,7 @@ static int snd_soc_ac97_init_gpio(struct snd_ac97 *ac97,
     gpio_priv->codec = codec;
     gpio_priv->gpio_chip = snd_soc_ac97_gpio_chip;
     gpio_priv->gpio_chip.ngpio = AC97_NUM_GPIOS;
-    gpio_priv->gpio_chip.dev = codec->dev;
+    gpio_priv->gpio_chip.parent = codec->dev;
     gpio_priv->gpio_chip.base = -1;

     ret = gpiochip_add(&gpio_priv->gpio_chip);
-- 
2.4.3



Yours,
Linus Walleij

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-07 12:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-03  0:12 [GIT PULL] AC'97 gpiochip Mark Brown
2015-12-07 12:34 ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).