aboutsummaryrefslogtreecommitdiffstats
path: root/sound/drivers/ml403-ac97cr.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-06 12:35:27 -0500
committerTakashi Iwai <tiwai@suse.de>2012-12-07 01:34:32 -0500
commitfbbb01a12d5d553ea3851a020d98c0ac9b383673 (patch)
treec11ff5d8c1c4cac7bd350e2ae7d05bd98ddc82c9 /sound/drivers/ml403-ac97cr.c
parent4423d247509fe65fb9e9efb35229fd1d3986d41d (diff)
ALSA: drivers: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers/ml403-ac97cr.c')
-rw-r--r--sound/drivers/ml403-ac97cr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/drivers/ml403-ac97cr.c b/sound/drivers/ml403-ac97cr.c
index 6c83b1aed288..8125a7e95ee4 100644
--- a/sound/drivers/ml403-ac97cr.c
+++ b/sound/drivers/ml403-ac97cr.c
@@ -1063,7 +1063,7 @@ snd_ml403_ac97cr_codec_write(struct snd_ac97 *ac97, unsigned short reg,
1063 return; 1063 return;
1064} 1064}
1065 1065
1066static int __devinit 1066static int
1067snd_ml403_ac97cr_chip_init(struct snd_ml403_ac97cr *ml403_ac97cr) 1067snd_ml403_ac97cr_chip_init(struct snd_ml403_ac97cr *ml403_ac97cr)
1068{ 1068{
1069 unsigned long end_time; 1069 unsigned long end_time;
@@ -1108,7 +1108,7 @@ static int snd_ml403_ac97cr_dev_free(struct snd_device *snddev)
1108 return snd_ml403_ac97cr_free(ml403_ac97cr); 1108 return snd_ml403_ac97cr_free(ml403_ac97cr);
1109} 1109}
1110 1110
1111static int __devinit 1111static int
1112snd_ml403_ac97cr_create(struct snd_card *card, struct platform_device *pfdev, 1112snd_ml403_ac97cr_create(struct snd_card *card, struct platform_device *pfdev,
1113 struct snd_ml403_ac97cr **rml403_ac97cr) 1113 struct snd_ml403_ac97cr **rml403_ac97cr)
1114{ 1114{
@@ -1204,7 +1204,7 @@ static void snd_ml403_ac97cr_mixer_free(struct snd_ac97 *ac97)
1204 PDEBUG(INIT_INFO, "mixer_free(): (done)\n"); 1204 PDEBUG(INIT_INFO, "mixer_free(): (done)\n");
1205} 1205}
1206 1206
1207static int __devinit 1207static int
1208snd_ml403_ac97cr_mixer(struct snd_ml403_ac97cr *ml403_ac97cr) 1208snd_ml403_ac97cr_mixer(struct snd_ml403_ac97cr *ml403_ac97cr)
1209{ 1209{
1210 struct snd_ac97_bus *bus; 1210 struct snd_ac97_bus *bus;
@@ -1237,7 +1237,7 @@ snd_ml403_ac97cr_mixer(struct snd_ml403_ac97cr *ml403_ac97cr)
1237 return err; 1237 return err;
1238} 1238}
1239 1239
1240static int __devinit 1240static int
1241snd_ml403_ac97cr_pcm(struct snd_ml403_ac97cr *ml403_ac97cr, int device, 1241snd_ml403_ac97cr_pcm(struct snd_ml403_ac97cr *ml403_ac97cr, int device,
1242 struct snd_pcm **rpcm) 1242 struct snd_pcm **rpcm)
1243{ 1243{
@@ -1268,7 +1268,7 @@ snd_ml403_ac97cr_pcm(struct snd_ml403_ac97cr *ml403_ac97cr, int device,
1268 return 0; 1268 return 0;
1269} 1269}
1270 1270
1271static int __devinit snd_ml403_ac97cr_probe(struct platform_device *pfdev) 1271static int snd_ml403_ac97cr_probe(struct platform_device *pfdev)
1272{ 1272{
1273 struct snd_card *card; 1273 struct snd_card *card;
1274 struct snd_ml403_ac97cr *ml403_ac97cr = NULL; 1274 struct snd_ml403_ac97cr *ml403_ac97cr = NULL;