Skip to content

Commit

Permalink
ASoC: Clean up AC'97 glue driver
Browse files Browse the repository at this point in the history
Remove version number and clean up some indentation.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
  • Loading branch information
Mark Brown committed Sep 24, 2010
1 parent 8d85d74 commit 591796b
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions sound/soc/codecs/ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
#include <sound/initval.h>
#include <sound/soc.h>

#define AC97_VERSION "0.6"

static int ac97_prepare(struct snd_pcm_substream *substream,
struct snd_soc_dai *dai)
{
Expand Down Expand Up @@ -81,11 +79,9 @@ static int ac97_soc_probe(struct snd_soc_codec *codec)
struct snd_ac97_template ac97_template;
int ret;

printk(KERN_INFO "AC97 SoC Audio Codec %s\n", AC97_VERSION);

ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0);
if (ret < 0) {
printk(KERN_ERR "ASoC: failed to init gen ac97 glue\n");
printk(KERN_ERR "ASoC: failed to init generic ac97 glue\n");
return ret;
}

Expand Down Expand Up @@ -127,8 +123,8 @@ static int ac97_soc_resume(struct snd_soc_codec *codec)
#endif

static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
.write = ac97_write,
.read = ac97_read,
.write = ac97_write,
.read = ac97_read,
.probe = ac97_soc_probe,
.remove = ac97_soc_remove,
.suspend = ac97_soc_suspend,
Expand All @@ -149,8 +145,8 @@ static int __devexit ac97_remove(struct platform_device *pdev)

static struct platform_driver ac97_codec_driver = {
.driver = {
.name = "ac97-codec",
.owner = THIS_MODULE,
.name = "ac97-codec",
.owner = THIS_MODULE,
},

.probe = ac97_probe,
Expand Down

0 comments on commit 591796b

Please sign in to comment.