Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283785
b: refs/heads/master
c: cb5e873
h: refs/heads/master
i:
  283783: 478e166
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Nov 25, 2011
1 parent 3698301 commit 9718fcb
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 82 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: 2f702a19154ddbd294825c0588593e1eef10b1e2
refs/heads/master: cb5e87387cfa8172faca36682e2df069b006efdf
12 changes: 1 addition & 11 deletions trunk/sound/soc/sh/dma-sh7760.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,17 +369,7 @@ static struct platform_driver sh7760_pcm_driver = {
.remove = __devexit_p(sh7760_soc_platform_remove),
};

static int __init snd_sh7760_pcm_init(void)
{
return platform_driver_register(&sh7760_pcm_driver);
}
module_init(snd_sh7760_pcm_init);

static void __exit snd_sh7760_pcm_exit(void)
{
platform_driver_unregister(&sh7760_pcm_driver);
}
module_exit(snd_sh7760_pcm_exit);
module_platform_driver(sh7760_pcm_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/sh/fsi-ak4642.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,7 @@ static struct platform_driver fsi_ak4642 = {
.remove = fsi_ak4642_remove,
};

static int __init fsi_ak4642_init(void)
{
return platform_driver_register(&fsi_ak4642);
}

static void __exit fsi_ak4642_exit(void)
{
platform_driver_unregister(&fsi_ak4642);
}

module_init(fsi_ak4642_init);
module_exit(fsi_ak4642_exit);
module_platform_driver(fsi_ak4642);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Generic SH4 FSI-AK4642 sound card");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/sh/fsi-hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,7 @@ static struct platform_driver fsi_hdmi = {
.id_table = fsi_id_table,
};

static int __init fsi_hdmi_init(void)
{
return platform_driver_register(&fsi_hdmi);
}

static void __exit fsi_hdmi_exit(void)
{
platform_driver_unregister(&fsi_hdmi);
}

module_init(fsi_hdmi_init);
module_exit(fsi_hdmi_exit);
module_platform_driver(fsi_hdmi);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Generic SH4 FSI-HDMI sound card");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/sh/fsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1468,18 +1468,7 @@ static struct platform_driver fsi_driver = {
.id_table = fsi_id_table,
};

static int __init fsi_mobile_init(void)
{
return platform_driver_register(&fsi_driver);
}

static void __exit fsi_mobile_exit(void)
{
platform_driver_unregister(&fsi_driver);
}

module_init(fsi_mobile_init);
module_exit(fsi_mobile_exit);
module_platform_driver(fsi_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
Expand Down
12 changes: 1 addition & 11 deletions trunk/sound/soc/sh/hac.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,17 +332,7 @@ static struct platform_driver hac_pcm_driver = {
.remove = __devexit_p(hac_soc_platform_remove),
};

static int __init sh4_hac_pcm_init(void)
{
return platform_driver_register(&hac_pcm_driver);
}
module_init(sh4_hac_pcm_init);

static void __exit sh4_hac_pcm_exit(void)
{
platform_driver_unregister(&hac_pcm_driver);
}
module_exit(sh4_hac_pcm_exit);
module_platform_driver(hac_pcm_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SuperH onchip HAC (AC97) audio driver");
Expand Down
13 changes: 1 addition & 12 deletions trunk/sound/soc/sh/siu_dai.c
Original file line number Diff line number Diff line change
Expand Up @@ -852,18 +852,7 @@ static struct platform_driver siu_driver = {
.remove = __devexit_p(siu_remove),
};

static int __init siu_init(void)
{
return platform_driver_register(&siu_driver);
}

static void __exit siu_exit(void)
{
platform_driver_unregister(&siu_driver);
}

module_init(siu_init)
module_exit(siu_exit)
module_platform_driver(siu_driver);

MODULE_AUTHOR("Carlos Munoz <carlos@kenati.com>");
MODULE_DESCRIPTION("ALSA SoC SH7722 SIU driver");
Expand Down
12 changes: 1 addition & 11 deletions trunk/sound/soc/sh/ssi.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,17 +401,7 @@ static struct platform_driver sh4_ssi_driver = {
.remove = __devexit_p(sh4_soc_dai_remove),
};

static int __init snd_sh4_ssi_init(void)
{
return platform_driver_register(&sh4_ssi_driver);
}
module_init(snd_sh4_ssi_init);

static void __exit snd_sh4_ssi_exit(void)
{
platform_driver_unregister(&sh4_ssi_driver);
}
module_exit(snd_sh4_ssi_exit);
module_platform_driver(sh4_ssi_driver);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SuperH onchip SSI (I2S) audio driver");
Expand Down

0 comments on commit 9718fcb

Please sign in to comment.