diff options
Diffstat (limited to 'sound/arm/aaci.c')
-rw-r--r-- | sound/arm/aaci.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c index 5119fdabcb98..aa5d8034890b 100644 --- a/sound/arm/aaci.c +++ b/sound/arm/aaci.c | |||
@@ -786,7 +786,7 @@ static int aaci_resume(struct amba_device *dev) | |||
786 | #endif | 786 | #endif |
787 | 787 | ||
788 | 788 | ||
789 | static struct ac97_pcm ac97_defs[] __devinitdata = { | 789 | static struct ac97_pcm ac97_defs[] = { |
790 | [0] = { /* Front PCM */ | 790 | [0] = { /* Front PCM */ |
791 | .exclusive = 1, | 791 | .exclusive = 1, |
792 | .r = { | 792 | .r = { |
@@ -832,7 +832,7 @@ static struct snd_ac97_bus_ops aaci_bus_ops = { | |||
832 | .read = aaci_ac97_read, | 832 | .read = aaci_ac97_read, |
833 | }; | 833 | }; |
834 | 834 | ||
835 | static int __devinit aaci_probe_ac97(struct aaci *aaci) | 835 | static int aaci_probe_ac97(struct aaci *aaci) |
836 | { | 836 | { |
837 | struct snd_ac97_template ac97_template; | 837 | struct snd_ac97_template ac97_template; |
838 | struct snd_ac97_bus *ac97_bus; | 838 | struct snd_ac97_bus *ac97_bus; |
@@ -893,7 +893,7 @@ static void aaci_free_card(struct snd_card *card) | |||
893 | iounmap(aaci->base); | 893 | iounmap(aaci->base); |
894 | } | 894 | } |
895 | 895 | ||
896 | static struct aaci * __devinit aaci_init_card(struct amba_device *dev) | 896 | static struct aaci *aaci_init_card(struct amba_device *dev) |
897 | { | 897 | { |
898 | struct aaci *aaci; | 898 | struct aaci *aaci; |
899 | struct snd_card *card; | 899 | struct snd_card *card; |
@@ -926,7 +926,7 @@ static struct aaci * __devinit aaci_init_card(struct amba_device *dev) | |||
926 | return aaci; | 926 | return aaci; |
927 | } | 927 | } |
928 | 928 | ||
929 | static int __devinit aaci_init_pcm(struct aaci *aaci) | 929 | static int aaci_init_pcm(struct aaci *aaci) |
930 | { | 930 | { |
931 | struct snd_pcm *pcm; | 931 | struct snd_pcm *pcm; |
932 | int ret; | 932 | int ret; |
@@ -948,7 +948,7 @@ static int __devinit aaci_init_pcm(struct aaci *aaci) | |||
948 | return ret; | 948 | return ret; |
949 | } | 949 | } |
950 | 950 | ||
951 | static unsigned int __devinit aaci_size_fifo(struct aaci *aaci) | 951 | static unsigned int aaci_size_fifo(struct aaci *aaci) |
952 | { | 952 | { |
953 | struct aaci_runtime *aacirun = &aaci->playback; | 953 | struct aaci_runtime *aacirun = &aaci->playback; |
954 | int i; | 954 | int i; |
@@ -984,8 +984,8 @@ static unsigned int __devinit aaci_size_fifo(struct aaci *aaci) | |||
984 | return i; | 984 | return i; |
985 | } | 985 | } |
986 | 986 | ||
987 | static int __devinit aaci_probe(struct amba_device *dev, | 987 | static int aaci_probe(struct amba_device *dev, |
988 | const struct amba_id *id) | 988 | const struct amba_id *id) |
989 | { | 989 | { |
990 | struct aaci *aaci; | 990 | struct aaci *aaci; |
991 | int ret, i; | 991 | int ret, i; |
@@ -1072,7 +1072,7 @@ static int __devinit aaci_probe(struct amba_device *dev, | |||
1072 | return ret; | 1072 | return ret; |
1073 | } | 1073 | } |
1074 | 1074 | ||
1075 | static int __devexit aaci_remove(struct amba_device *dev) | 1075 | static int aaci_remove(struct amba_device *dev) |
1076 | { | 1076 | { |
1077 | struct snd_card *card = amba_get_drvdata(dev); | 1077 | struct snd_card *card = amba_get_drvdata(dev); |
1078 | 1078 | ||
@@ -1104,7 +1104,7 @@ static struct amba_driver aaci_driver = { | |||
1104 | .name = DRIVER_NAME, | 1104 | .name = DRIVER_NAME, |
1105 | }, | 1105 | }, |
1106 | .probe = aaci_probe, | 1106 | .probe = aaci_probe, |
1107 | .remove = __devexit_p(aaci_remove), | 1107 | .remove = aaci_remove, |
1108 | .suspend = aaci_suspend, | 1108 | .suspend = aaci_suspend, |
1109 | .resume = aaci_resume, | 1109 | .resume = aaci_resume, |
1110 | .id_table = aaci_ids, | 1110 | .id_table = aaci_ids, |