diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-09-15 11:04:56 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-09-16 00:50:16 +0100 |
commit | 4f6c7e159361b330d767b107226bcc6938abad16 (patch) | |
tree | db6a11de43e31ee32a6676efe7c7022e39a160b6 /sound | |
parent | 5013951be88e136d9990ef55303276e2779ce8d8 (diff) | |
download | linux-3.10-4f6c7e159361b330d767b107226bcc6938abad16.tar.gz linux-3.10-4f6c7e159361b330d767b107226bcc6938abad16.tar.bz2 linux-3.10-4f6c7e159361b330d767b107226bcc6938abad16.zip |
ASoC: bf5xx-ad73311: Fix prototype for bf5xx_probe
Fix below build warning:
sound/soc/blackfin/bf5xx-ad73311.c: warning: initialization from incompatible pointer type
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/blackfin/bf5xx-ad73311.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/blackfin/bf5xx-ad73311.c b/sound/soc/blackfin/bf5xx-ad73311.c index 732a247f252..b94eb7ef7d1 100644 --- a/sound/soc/blackfin/bf5xx-ad73311.c +++ b/sound/soc/blackfin/bf5xx-ad73311.c @@ -128,7 +128,7 @@ static int snd_ad73311_configure(void) return 0; } -static int bf5xx_probe(struct platform_device *pdev) +static int bf5xx_probe(struct snd_soc_card *card) { int err; if (gpio_request(GPIO_SE, "AD73311_SE")) { |