diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/omap/omap4-hdmi-card.c | 28 |
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 @@ | |||
1 | /* | 1 | /* |
2 | * omap4-hdmi-card.c | 2 | * omap-hdmi-card.c |
3 | * | 3 | * |
4 | * OMAP ALSA SoC machine driver for TI OMAP4 HDMI | 4 | * OMAP ALSA SoC machine driver for TI OMAP HDMI |
5 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ | 5 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ |
6 | * Author: Ricardo Neri <ricardo.neri@ti.com> | 6 | * Author: Ricardo Neri <ricardo.neri@ti.com> |
7 | * | 7 | * |
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | #define DRV_NAME "omap-hdmi-audio" | 30 | #define DRV_NAME "omap-hdmi-audio" |
31 | 31 | ||
32 | static struct snd_soc_dai_link omap4_hdmi_dai = { | 32 | static struct snd_soc_dai_link omap_hdmi_dai = { |
33 | .name = "HDMI", | 33 | .name = "HDMI", |
34 | .stream_name = "HDMI", | 34 | .stream_name = "HDMI", |
35 | .cpu_dai_name = "omap-hdmi-audio-dai", | 35 | .cpu_dai_name = "omap-hdmi-audio-dai", |
@@ -38,16 +38,16 @@ static struct snd_soc_dai_link omap4_hdmi_dai = { | |||
38 | .codec_dai_name = "omap-hdmi-hifi", | 38 | .codec_dai_name = "omap-hdmi-hifi", |
39 | }; | 39 | }; |
40 | 40 | ||
41 | static struct snd_soc_card snd_soc_omap4_hdmi = { | 41 | static struct snd_soc_card snd_soc_omap_hdmi = { |
42 | .name = "OMAP4HDMI", | 42 | .name = "OMAPHDMI", |
43 | .owner = THIS_MODULE, | 43 | .owner = THIS_MODULE, |
44 | .dai_link = &omap4_hdmi_dai, | 44 | .dai_link = &omap_hdmi_dai, |
45 | .num_links = 1, | 45 | .num_links = 1, |
46 | }; | 46 | }; |
47 | 47 | ||
48 | static __devinit int omap4_hdmi_probe(struct platform_device *pdev) | 48 | static __devinit int omap_hdmi_probe(struct platform_device *pdev) |
49 | { | 49 | { |
50 | struct snd_soc_card *card = &snd_soc_omap4_hdmi; | 50 | struct snd_soc_card *card = &snd_soc_omap_hdmi; |
51 | int ret; | 51 | int ret; |
52 | 52 | ||
53 | card->dev = &pdev->dev; | 53 | card->dev = &pdev->dev; |
@@ -61,7 +61,7 @@ static __devinit int omap4_hdmi_probe(struct platform_device *pdev) | |||
61 | return 0; | 61 | return 0; |
62 | } | 62 | } |
63 | 63 | ||
64 | static int __devexit omap4_hdmi_remove(struct platform_device *pdev) | 64 | static int __devexit omap_hdmi_remove(struct platform_device *pdev) |
65 | { | 65 | { |
66 | struct snd_soc_card *card = platform_get_drvdata(pdev); | 66 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
67 | 67 | ||
@@ -70,18 +70,18 @@ static int __devexit omap4_hdmi_remove(struct platform_device *pdev) | |||
70 | return 0; | 70 | return 0; |
71 | } | 71 | } |
72 | 72 | ||
73 | static struct platform_driver omap4_hdmi_driver = { | 73 | static struct platform_driver omap_hdmi_driver = { |
74 | .driver = { | 74 | .driver = { |
75 | .name = DRV_NAME, | 75 | .name = DRV_NAME, |
76 | .owner = THIS_MODULE, | 76 | .owner = THIS_MODULE, |
77 | }, | 77 | }, |
78 | .probe = omap4_hdmi_probe, | 78 | .probe = omap_hdmi_probe, |
79 | .remove = __devexit_p(omap4_hdmi_remove), | 79 | .remove = __devexit_p(omap_hdmi_remove), |
80 | }; | 80 | }; |
81 | 81 | ||
82 | module_platform_driver(omap4_hdmi_driver); | 82 | module_platform_driver(omap_hdmi_driver); |
83 | 83 | ||
84 | MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>"); | 84 | MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>"); |
85 | MODULE_DESCRIPTION("OMAP4 HDMI machine ASoC driver"); | 85 | MODULE_DESCRIPTION("OMAP HDMI machine ASoC driver"); |
86 | MODULE_LICENSE("GPL"); | 86 | MODULE_LICENSE("GPL"); |
87 | MODULE_ALIAS("platform:" DRV_NAME); | 87 | MODULE_ALIAS("platform:" DRV_NAME); |