Commit 0d054318 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'asoc/fix/blackfin' into asoc-linus

parents d2ee88d0 610d80ea
...@@ -294,11 +294,12 @@ static int asoc_bfin_ac97_probe(struct platform_device *pdev) ...@@ -294,11 +294,12 @@ static int asoc_bfin_ac97_probe(struct platform_device *pdev)
/* Request PB3 as reset pin */ /* Request PB3 as reset pin */
ret = devm_gpio_request_one(&pdev->dev, ret = devm_gpio_request_one(&pdev->dev,
CONFIG_SND_BF5XX_RESET_GPIO_NUM, CONFIG_SND_BF5XX_RESET_GPIO_NUM,
GPIOF_OUT_INIT_HIGH, "SND_AD198x RESET") { GPIOF_OUT_INIT_HIGH, "SND_AD198x RESET");
if (ret) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"Failed to request GPIO_%d for reset: %d\n", "Failed to request GPIO_%d for reset: %d\n",
CONFIG_SND_BF5XX_RESET_GPIO_NUM, ret); CONFIG_SND_BF5XX_RESET_GPIO_NUM, ret);
goto gpio_err; return ret;
} }
#endif #endif
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#ifndef _BF5XX_AC97_H #ifndef _BF5XX_AC97_H
#define _BF5XX_AC97_H #define _BF5XX_AC97_H
extern struct snd_ac97_bus_ops bf5xx_ac97_ops;
extern struct snd_ac97 *ac97; extern struct snd_ac97 *ac97;
/* Frame format in memory, only support stereo currently */ /* Frame format in memory, only support stereo currently */
struct ac97_frame { struct ac97_frame {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment