Skip to content

Commit

Permalink
ASoC: Tegra PCM: Use module_platform_driver
Browse files Browse the repository at this point in the history
This saves some boiler-plate code.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Stephen Warren authored and Mark Brown committed Nov 23, 2011
1 parent 1db3c98 commit 99c92ae
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions sound/soc/tegra/tegra_pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,18 +392,7 @@ static struct platform_driver tegra_pcm_driver = {
.probe = tegra_pcm_platform_probe,
.remove = __devexit_p(tegra_pcm_platform_remove),
};

static int __init snd_tegra_pcm_init(void)
{
return platform_driver_register(&tegra_pcm_driver);
}
module_init(snd_tegra_pcm_init);

static void __exit snd_tegra_pcm_exit(void)
{
platform_driver_unregister(&tegra_pcm_driver);
}
module_exit(snd_tegra_pcm_exit);
module_platform_driver(tegra_pcm_driver);

MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
MODULE_DESCRIPTION("Tegra PCM ASoC driver");
Expand Down

0 comments on commit 99c92ae

Please sign in to comment.