Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283770
b: refs/heads/master
c: ee18f63
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Nov 24, 2011
1 parent e58b843 commit 66528cc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 70 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 45f3121615b2b354f7d95d30f795bc5fe0043e92
refs/heads/master: ee18f6314fa16376d53c29ecf9704011f2ce8180
12 changes: 1 addition & 11 deletions trunk/sound/soc/ep93xx/edb93xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,7 @@ static struct platform_driver edb93xx_driver = {
.remove = __devexit_p(edb93xx_remove),
};

static int __init edb93xx_init(void)
{
return platform_driver_register(&edb93xx_driver);
}
module_init(edb93xx_init);

static void __exit edb93xx_exit(void)
{
platform_driver_unregister(&edb93xx_driver);
}
module_exit(edb93xx_exit);
module_platform_driver(edb93xx_driver);

MODULE_AUTHOR("Alexander Sverdlin <subaparts@yandex.ru>");
MODULE_DESCRIPTION("ALSA SoC EDB93xx");
Expand Down
12 changes: 1 addition & 11 deletions trunk/sound/soc/ep93xx/ep93xx-ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,17 +449,7 @@ static struct platform_driver ep93xx_ac97_driver = {
},
};

static int __init ep93xx_ac97_init(void)
{
return platform_driver_register(&ep93xx_ac97_driver);
}
module_init(ep93xx_ac97_init);

static void __exit ep93xx_ac97_exit(void)
{
platform_driver_unregister(&ep93xx_ac97_driver);
}
module_exit(ep93xx_ac97_exit);
module_platform_driver(ep93xx_ac97_driver);

MODULE_DESCRIPTION("EP93xx AC97 ASoC Driver");
MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/ep93xx/ep93xx-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -464,18 +464,7 @@ static struct platform_driver ep93xx_i2s_driver = {
},
};

static int __init ep93xx_i2s_init(void)
{
return platform_driver_register(&ep93xx_i2s_driver);
}

static void __exit ep93xx_i2s_exit(void)
{
platform_driver_unregister(&ep93xx_i2s_driver);
}

module_init(ep93xx_i2s_init);
module_exit(ep93xx_i2s_exit);
module_platform_driver(ep93xx_i2s_driver);

MODULE_ALIAS("platform:ep93xx-i2s");
MODULE_AUTHOR("Ryan Mallon");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/ep93xx/ep93xx-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,18 +339,7 @@ static struct platform_driver ep93xx_pcm_driver = {
.remove = __devexit_p(ep93xx_soc_platform_remove),
};

static int __init ep93xx_soc_platform_init(void)
{
return platform_driver_register(&ep93xx_pcm_driver);
}

static void __exit ep93xx_soc_platform_exit(void)
{
platform_driver_unregister(&ep93xx_pcm_driver);
}

module_init(ep93xx_soc_platform_init);
module_exit(ep93xx_soc_platform_exit);
module_platform_driver(ep93xx_pcm_driver);

MODULE_AUTHOR("Ryan Mallon");
MODULE_DESCRIPTION("EP93xx ALSA PCM interface");
Expand Down
12 changes: 1 addition & 11 deletions trunk/sound/soc/ep93xx/simone.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,7 @@ static struct platform_driver simone_driver = {
.remove = __devexit_p(simone_remove),
};

static int __init simone_init(void)
{
return platform_driver_register(&simone_driver);
}
module_init(simone_init);

static void __exit simone_exit(void)
{
platform_driver_unregister(&simone_driver);
}
module_exit(simone_exit);
module_platform_driver(simone_driver);

MODULE_DESCRIPTION("ALSA SoC Simplemachines Sim.One");
MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/ep93xx/snappercl15.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,18 +147,7 @@ static struct platform_driver snappercl15_driver = {
.remove = __devexit_p(snappercl15_remove),
};

static int __init snappercl15_init(void)
{
return platform_driver_register(&snappercl15_driver);
}

static void __exit snappercl15_exit(void)
{
platform_driver_unregister(&snappercl15_driver);
}

module_init(snappercl15_init);
module_exit(snappercl15_exit);
module_platform_driver(snappercl15_driver);

MODULE_AUTHOR("Ryan Mallon");
MODULE_DESCRIPTION("ALSA SoC Snapper CL15");
Expand Down

0 comments on commit 66528cc

Please sign in to comment.