Title: [6640] trunk/sound/soc/blackfin: typo in variable names, bf52x->bf5xx
- Revision
- 6640
- Author
- bhsong
- Date
- 2009-06-10 20:52:09 -0500 (Wed, 10 Jun 2009)
Log Message
typo in variable names, bf52x->bf5xx
Modified Paths
Diff
Modified: trunk/sound/soc/blackfin/bf5xx-ad1938.c (6639 => 6640)
--- trunk/sound/soc/blackfin/bf5xx-ad1938.c 2009-06-11 00:40:21 UTC (rev 6639)
+++ trunk/sound/soc/blackfin/bf5xx-ad1938.c 2009-06-11 01:52:09 UTC (rev 6640)
@@ -118,29 +118,29 @@
.codec_dev = &soc_codec_dev_ad1938,
};
-static struct platform_device *bf52x_ad1938_snd_device;
+static struct platform_device *bfxx_ad1938_snd_device;
static int __init bf5xx_ad1938_init(void)
{
int ret;
- bf52x_ad1938_snd_device = platform_device_alloc("soc-audio", -1);
- if (!bf52x_ad1938_snd_device)
+ bfxx_ad1938_snd_device = platform_device_alloc("soc-audio", -1);
+ if (!bfxx_ad1938_snd_device)
return -ENOMEM;
- platform_set_drvdata(bf52x_ad1938_snd_device, &bf5xx_ad1938_snd_devdata);
- bf5xx_ad1938_snd_devdata.dev = &bf52x_ad1938_snd_device->dev;
- ret = platform_device_add(bf52x_ad1938_snd_device);
+ platform_set_drvdata(bfxx_ad1938_snd_device, &bf5xx_ad1938_snd_devdata);
+ bf5xx_ad1938_snd_devdata.dev = &bfxx_ad1938_snd_device->dev;
+ ret = platform_device_add(bfxx_ad1938_snd_device);
if (ret)
- platform_device_put(bf52x_ad1938_snd_device);
+ platform_device_put(bfxx_ad1938_snd_device);
return ret;
}
static void __exit bf5xx_ad1938_exit(void)
{
- platform_device_unregister(bf52x_ad1938_snd_device);
+ platform_device_unregister(bfxx_ad1938_snd_device);
}
module_init(bf5xx_ad1938_init);
Modified: trunk/sound/soc/blackfin/bf5xx-ad73311.c (6639 => 6640)
--- trunk/sound/soc/blackfin/bf5xx-ad73311.c 2009-06-11 00:40:21 UTC (rev 6639)
+++ trunk/sound/soc/blackfin/bf5xx-ad73311.c 2009-06-11 01:52:09 UTC (rev 6640)
@@ -203,23 +203,23 @@
.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)
{
int ret;
pr_debug("%s enter\n", __func__);
- bf52x_ad73311_snd_device = platform_device_alloc("soc-audio", -1);
- if (!bf52x_ad73311_snd_device)
+ bf5xx_ad73311_snd_device = platform_device_alloc("soc-audio", -1);
+ if (!bf5xx_ad73311_snd_device)
return -ENOMEM;
- platform_set_drvdata(bf52x_ad73311_snd_device, &bf5xx_ad73311_snd_devdata);
- bf5xx_ad73311_snd_devdata.dev = &bf52x_ad73311_snd_device->dev;
- ret = platform_device_add(bf52x_ad73311_snd_device);
+ platform_set_drvdata(bf5xx_ad73311_snd_device, &bf5xx_ad73311_snd_devdata);
+ bf5xx_ad73311_snd_devdata.dev = &bf5xx_ad73311_snd_device->dev;
+ ret = platform_device_add(bf5xx_ad73311_snd_device);
if (ret)
- platform_device_put(bf52x_ad73311_snd_device);
+ platform_device_put(bf5xx_ad73311_snd_device);
return ret;
}
@@ -227,7 +227,7 @@
static void __exit bf5xx_ad73311_exit(void)
{
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);
Modified: trunk/sound/soc/blackfin/bf5xx-ssm2602.c (6639 => 6640)
--- trunk/sound/soc/blackfin/bf5xx-ssm2602.c 2009-06-11 00:40:21 UTC (rev 6639)
+++ trunk/sound/soc/blackfin/bf5xx-ssm2602.c 2009-06-11 01:52:09 UTC (rev 6640)
@@ -148,24 +148,24 @@
.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)
{
int ret;
pr_debug("%s enter\n", __func__);
- bf52x_ssm2602_snd_device = platform_device_alloc("soc-audio", -1);
- if (!bf52x_ssm2602_snd_device)
+ bf5xx_ssm2602_snd_device = platform_device_alloc("soc-audio", -1);
+ if (!bf5xx_ssm2602_snd_device)
return -ENOMEM;
- platform_set_drvdata(bf52x_ssm2602_snd_device,
+ platform_set_drvdata(bf5xx_ssm2602_snd_device,
&bf5xx_ssm2602_snd_devdata);
- bf5xx_ssm2602_snd_devdata.dev = &bf52x_ssm2602_snd_device->dev;
- ret = platform_device_add(bf52x_ssm2602_snd_device);
+ bf5xx_ssm2602_snd_devdata.dev = &bf5xx_ssm2602_snd_device->dev;
+ ret = platform_device_add(bf5xx_ssm2602_snd_device);
if (ret)
- platform_device_put(bf52x_ssm2602_snd_device);
+ platform_device_put(bf5xx_ssm2602_snd_device);
return ret;
}
@@ -173,7 +173,7 @@
static void __exit bf5xx_ssm2602_exit(void)
{
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);
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits