[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1340037743-12924-2-git-send-email-stigge@antcom.de>
Date: Mon, 18 Jun 2012 18:42:22 +0200
From: Roland Stigge <stigge@...com.de>
To: swarren@...dotorg.org, cjb@...top.org, grant.likely@...retlab.ca,
rob.herring@...xeda.com, rmk+kernel@....linux.org.uk,
ulf.hansson@...ricsson.com, linus.walleij@...aro.org,
linux-mmc@...r.kernel.org, linux-kernel@...r.kernel.org,
aletes.xgr@...il.com, linux-arm-kernel@...ts.infradead.org,
broonie@...nsource.wolfsonmicro.com, lrg@...com, perex@...ex.cz,
tiwai@...e.de, alsa-devel@...a-project.org
Cc: Roland Stigge <stigge@...com.de>
Subject: [PATCH 2/2] sound: tegra_alc5632: Adjust to of_get_named_gpio() change
of_get_named_gpio() was changed to return -EPROBE_DEFER in case of
gpios not probed yet. This patch adjusts tegra_alc5632 to this.
Signed-off-by: Roland Stigge <stigge@...com.de>
---
Applies to git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git,
branch for-next
sound/soc/tegra/tegra_alc5632.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/tegra/tegra_alc5632.c b/sound/soc/tegra/tegra_alc5632.c
index d684df2..e463529 100644
--- a/sound/soc/tegra/tegra_alc5632.c
+++ b/sound/soc/tegra/tegra_alc5632.c
@@ -177,7 +177,7 @@ static __devinit int tegra_alc5632_probe(struct platform_device *pdev)
}
alc5632->gpio_hp_det = of_get_named_gpio(np, "nvidia,hp-det-gpios", 0);
- if (alc5632->gpio_hp_det == -ENODEV)
+ if (alc5632->gpio_hp_det == -EPROBE_DEFER)
return -EPROBE_DEFER;
ret = snd_soc_of_parse_card_name(card, "nvidia,model");
--
1.7.10
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists