diff options
Diffstat (limited to 'sound/parisc/harmony.c')
-rw-r--r-- | sound/parisc/harmony.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/parisc/harmony.c b/sound/parisc/harmony.c index f47f9e226b08..0e66ba48d453 100644 --- a/sound/parisc/harmony.c +++ b/sound/parisc/harmony.c | |||
@@ -856,7 +856,7 @@ static struct snd_kcontrol_new snd_harmony_controls[] = { | |||
856 | HARMONY_GAIN_HE_SHIFT, 1, 0), | 856 | HARMONY_GAIN_HE_SHIFT, 1, 0), |
857 | }; | 857 | }; |
858 | 858 | ||
859 | static void __devinit | 859 | static void |
860 | snd_harmony_mixer_reset(struct snd_harmony *h) | 860 | snd_harmony_mixer_reset(struct snd_harmony *h) |
861 | { | 861 | { |
862 | harmony_mute(h); | 862 | harmony_mute(h); |
@@ -865,7 +865,7 @@ snd_harmony_mixer_reset(struct snd_harmony *h) | |||
865 | harmony_unmute(h); | 865 | harmony_unmute(h); |
866 | } | 866 | } |
867 | 867 | ||
868 | static int __devinit | 868 | static int |
869 | snd_harmony_mixer_init(struct snd_harmony *h) | 869 | snd_harmony_mixer_init(struct snd_harmony *h) |
870 | { | 870 | { |
871 | struct snd_card *card; | 871 | struct snd_card *card; |
@@ -915,7 +915,7 @@ snd_harmony_dev_free(struct snd_device *dev) | |||
915 | return snd_harmony_free(h); | 915 | return snd_harmony_free(h); |
916 | } | 916 | } |
917 | 917 | ||
918 | static int __devinit | 918 | static int |
919 | snd_harmony_create(struct snd_card *card, | 919 | snd_harmony_create(struct snd_card *card, |
920 | struct parisc_device *padev, | 920 | struct parisc_device *padev, |
921 | struct snd_harmony **rchip) | 921 | struct snd_harmony **rchip) |
@@ -972,7 +972,7 @@ free_and_ret: | |||
972 | return err; | 972 | return err; |
973 | } | 973 | } |
974 | 974 | ||
975 | static int __devinit | 975 | static int |
976 | snd_harmony_probe(struct parisc_device *padev) | 976 | snd_harmony_probe(struct parisc_device *padev) |
977 | { | 977 | { |
978 | int err; | 978 | int err; |
@@ -1012,7 +1012,7 @@ free_and_ret: | |||
1012 | return err; | 1012 | return err; |
1013 | } | 1013 | } |
1014 | 1014 | ||
1015 | static int __devexit | 1015 | static int |
1016 | snd_harmony_remove(struct parisc_device *padev) | 1016 | snd_harmony_remove(struct parisc_device *padev) |
1017 | { | 1017 | { |
1018 | snd_card_free(parisc_get_drvdata(padev)); | 1018 | snd_card_free(parisc_get_drvdata(padev)); |
@@ -1024,7 +1024,7 @@ static struct parisc_driver snd_harmony_driver = { | |||
1024 | .name = "harmony", | 1024 | .name = "harmony", |
1025 | .id_table = snd_harmony_devtable, | 1025 | .id_table = snd_harmony_devtable, |
1026 | .probe = snd_harmony_probe, | 1026 | .probe = snd_harmony_probe, |
1027 | .remove = __devexit_p(snd_harmony_remove), | 1027 | .remove = snd_harmony_remove, |
1028 | }; | 1028 | }; |
1029 | 1029 | ||
1030 | static int __init | 1030 | static int __init |