Commit f274143f authored by Barry Song's avatar Barry Song Committed by Mark Brown

ASoC: Blackfin: convert internal names from bf52x to bf5xx

These drivers aren't BF52x specific, so don't use bf52x in the names.
Signed-off-by: default avatarBarry Song <barry.song@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 423c238d
...@@ -203,23 +203,23 @@ static struct snd_soc_device bf5xx_ad73311_snd_devdata = { ...@@ -203,23 +203,23 @@ static struct snd_soc_device bf5xx_ad73311_snd_devdata = {
.codec_dev = &soc_codec_dev_ad73311, .codec_dev = &soc_codec_dev_ad73311,
}; };
static struct platform_device *bf52x_ad73311_snd_device; static struct platform_device *bf5xx_ad73311_snd_device;
static int __init bf5xx_ad73311_init(void) static int __init bf5xx_ad73311_init(void)
{ {
int ret; int ret;
pr_debug("%s enter\n", __func__); pr_debug("%s enter\n", __func__);
bf52x_ad73311_snd_device = platform_device_alloc("soc-audio", -1); bf5xx_ad73311_snd_device = platform_device_alloc("soc-audio", -1);
if (!bf52x_ad73311_snd_device) if (!bf5xx_ad73311_snd_device)
return -ENOMEM; return -ENOMEM;
platform_set_drvdata(bf52x_ad73311_snd_device, &bf5xx_ad73311_snd_devdata); platform_set_drvdata(bf5xx_ad73311_snd_device, &bf5xx_ad73311_snd_devdata);
bf5xx_ad73311_snd_devdata.dev = &bf52x_ad73311_snd_device->dev; bf5xx_ad73311_snd_devdata.dev = &bf5xx_ad73311_snd_device->dev;
ret = platform_device_add(bf52x_ad73311_snd_device); ret = platform_device_add(bf5xx_ad73311_snd_device);
if (ret) if (ret)
platform_device_put(bf52x_ad73311_snd_device); platform_device_put(bf5xx_ad73311_snd_device);
return ret; return ret;
} }
...@@ -227,7 +227,7 @@ static int __init bf5xx_ad73311_init(void) ...@@ -227,7 +227,7 @@ static int __init bf5xx_ad73311_init(void)
static void __exit bf5xx_ad73311_exit(void) static void __exit bf5xx_ad73311_exit(void)
{ {
pr_debug("%s enter\n", __func__); pr_debug("%s enter\n", __func__);
platform_device_unregister(bf52x_ad73311_snd_device); platform_device_unregister(bf5xx_ad73311_snd_device);
} }
module_init(bf5xx_ad73311_init); module_init(bf5xx_ad73311_init);
......
...@@ -148,24 +148,24 @@ static struct snd_soc_device bf5xx_ssm2602_snd_devdata = { ...@@ -148,24 +148,24 @@ static struct snd_soc_device bf5xx_ssm2602_snd_devdata = {
.codec_data = &bf5xx_ssm2602_setup, .codec_data = &bf5xx_ssm2602_setup,
}; };
static struct platform_device *bf52x_ssm2602_snd_device; static struct platform_device *bf5xx_ssm2602_snd_device;
static int __init bf5xx_ssm2602_init(void) static int __init bf5xx_ssm2602_init(void)
{ {
int ret; int ret;
pr_debug("%s enter\n", __func__); pr_debug("%s enter\n", __func__);
bf52x_ssm2602_snd_device = platform_device_alloc("soc-audio", -1); bf5xx_ssm2602_snd_device = platform_device_alloc("soc-audio", -1);
if (!bf52x_ssm2602_snd_device) if (!bf5xx_ssm2602_snd_device)
return -ENOMEM; return -ENOMEM;
platform_set_drvdata(bf52x_ssm2602_snd_device, platform_set_drvdata(bf5xx_ssm2602_snd_device,
&bf5xx_ssm2602_snd_devdata); &bf5xx_ssm2602_snd_devdata);
bf5xx_ssm2602_snd_devdata.dev = &bf52x_ssm2602_snd_device->dev; bf5xx_ssm2602_snd_devdata.dev = &bf5xx_ssm2602_snd_device->dev;
ret = platform_device_add(bf52x_ssm2602_snd_device); ret = platform_device_add(bf5xx_ssm2602_snd_device);
if (ret) if (ret)
platform_device_put(bf52x_ssm2602_snd_device); platform_device_put(bf5xx_ssm2602_snd_device);
return ret; return ret;
} }
...@@ -173,7 +173,7 @@ static int __init bf5xx_ssm2602_init(void) ...@@ -173,7 +173,7 @@ static int __init bf5xx_ssm2602_init(void)
static void __exit bf5xx_ssm2602_exit(void) static void __exit bf5xx_ssm2602_exit(void)
{ {
pr_debug("%s enter\n", __func__); pr_debug("%s enter\n", __func__);
platform_device_unregister(bf52x_ssm2602_snd_device); platform_device_unregister(bf5xx_ssm2602_snd_device);
} }
module_init(bf5xx_ssm2602_init); module_init(bf5xx_ssm2602_init);
......
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