summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorRicardo Neri <ricardo.neri@ti.com>2012-05-18 01:42:42 -0500
committerLiam Girdwood <lrg@ti.com>2012-05-22 17:33:24 +0100
commitaff4833999a589373cd0ed4723b30d793239455c (patch)
tree18f5fa4abcf8b5ccfa242fad6e79b3f266afe0d6 /sound
parentdc314cde04b107c7a2a254a5c4dc197939acc4d3 (diff)
downloadlinux-aff4833999a589373cd0ed4723b30d793239455c.tar.gz
linux-aff4833999a589373cd0ed4723b30d793239455c.tar.xz
linux-aff4833999a589373cd0ed4723b30d793239455c.zip
ASoC: OMAP: HDMI: Make sound card naming more generic
Rename all the relevant structures, variables and functions to not make specific reference to OMAP4. This is to make the driver encompass future OMAP versions that feature HDMI and not only OMAP4. These changes are only in naming. There are not functional changes. Signed-off-by: Ricardo Neri <ricardo.neri@ti.com> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@ti.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/omap/omap4-hdmi-card.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/sound/soc/omap/omap4-hdmi-card.c b/sound/soc/omap/omap4-hdmi-card.c
index 6c3255fed2ef..eaa2ea0e3f81 100644
--- a/sound/soc/omap/omap4-hdmi-card.c
+++ b/sound/soc/omap/omap4-hdmi-card.c
@@ -1,7 +1,7 @@
/*
- * omap4-hdmi-card.c
+ * omap-hdmi-card.c
*
- * OMAP ALSA SoC machine driver for TI OMAP4 HDMI
+ * OMAP ALSA SoC machine driver for TI OMAP HDMI
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
* Author: Ricardo Neri <ricardo.neri@ti.com>
*
@@ -29,7 +29,7 @@
#define DRV_NAME "omap-hdmi-audio"
-static struct snd_soc_dai_link omap4_hdmi_dai = {
+static struct snd_soc_dai_link omap_hdmi_dai = {
.name = "HDMI",
.stream_name = "HDMI",
.cpu_dai_name = "omap-hdmi-audio-dai",
@@ -38,16 +38,16 @@ static struct snd_soc_dai_link omap4_hdmi_dai = {
.codec_dai_name = "omap-hdmi-hifi",
};
-static struct snd_soc_card snd_soc_omap4_hdmi = {
- .name = "OMAP4HDMI",
+static struct snd_soc_card snd_soc_omap_hdmi = {
+ .name = "OMAPHDMI",
.owner = THIS_MODULE,
- .dai_link = &omap4_hdmi_dai,
+ .dai_link = &omap_hdmi_dai,
.num_links = 1,
};
-static __devinit int omap4_hdmi_probe(struct platform_device *pdev)
+static __devinit int omap_hdmi_probe(struct platform_device *pdev)
{
- struct snd_soc_card *card = &snd_soc_omap4_hdmi;
+ struct snd_soc_card *card = &snd_soc_omap_hdmi;
int ret;
card->dev = &pdev->dev;
@@ -61,7 +61,7 @@ static __devinit int omap4_hdmi_probe(struct platform_device *pdev)
return 0;
}
-static int __devexit omap4_hdmi_remove(struct platform_device *pdev)
+static int __devexit omap_hdmi_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);
@@ -70,18 +70,18 @@ static int __devexit omap4_hdmi_remove(struct platform_device *pdev)
return 0;
}
-static struct platform_driver omap4_hdmi_driver = {
+static struct platform_driver omap_hdmi_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
},
- .probe = omap4_hdmi_probe,
- .remove = __devexit_p(omap4_hdmi_remove),
+ .probe = omap_hdmi_probe,
+ .remove = __devexit_p(omap_hdmi_remove),
};
-module_platform_driver(omap4_hdmi_driver);
+module_platform_driver(omap_hdmi_driver);
MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>");
-MODULE_DESCRIPTION("OMAP4 HDMI machine ASoC driver");
+MODULE_DESCRIPTION("OMAP HDMI machine ASoC driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:" DRV_NAME);