aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/emu10k1/emupcm.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-06 12:35:10 -0500
committerTakashi Iwai <tiwai@suse.de>2012-12-07 01:20:55 -0500
commite23e7a1436207217000c2854214bc908936af3cb (patch)
treeaebb83a4e59dde76a79ac60b51b67849c75c545b /sound/pci/emu10k1/emupcm.c
parent445a51b353c35fe54840c10352ef51152fbb94df (diff)
ALSA: pci: 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/pci/emu10k1/emupcm.c')
-rw-r--r--sound/pci/emu10k1/emupcm.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sound/pci/emu10k1/emupcm.c b/sound/pci/emu10k1/emupcm.c
index 0e6664fa6cd9..748a286277eb 100644
--- a/sound/pci/emu10k1/emupcm.c
+++ b/sound/pci/emu10k1/emupcm.c
@@ -1391,7 +1391,7 @@ static struct snd_pcm_ops snd_emu10k1_efx_playback_ops = {
1391 .page = snd_pcm_sgbuf_ops_page, 1391 .page = snd_pcm_sgbuf_ops_page,
1392}; 1392};
1393 1393
1394int __devinit snd_emu10k1_pcm(struct snd_emu10k1 * emu, int device, struct snd_pcm ** rpcm) 1394int snd_emu10k1_pcm(struct snd_emu10k1 *emu, int device, struct snd_pcm **rpcm)
1395{ 1395{
1396 struct snd_pcm *pcm; 1396 struct snd_pcm *pcm;
1397 struct snd_pcm_substream *substream; 1397 struct snd_pcm_substream *substream;
@@ -1426,7 +1426,8 @@ int __devinit snd_emu10k1_pcm(struct snd_emu10k1 * emu, int device, struct snd_p
1426 return 0; 1426 return 0;
1427} 1427}
1428 1428
1429int __devinit snd_emu10k1_pcm_multi(struct snd_emu10k1 * emu, int device, struct snd_pcm ** rpcm) 1429int snd_emu10k1_pcm_multi(struct snd_emu10k1 *emu, int device,
1430 struct snd_pcm **rpcm)
1430{ 1431{
1431 struct snd_pcm *pcm; 1432 struct snd_pcm *pcm;
1432 struct snd_pcm_substream *substream; 1433 struct snd_pcm_substream *substream;
@@ -1469,7 +1470,8 @@ static struct snd_pcm_ops snd_emu10k1_capture_mic_ops = {
1469 .pointer = snd_emu10k1_capture_pointer, 1470 .pointer = snd_emu10k1_capture_pointer,
1470}; 1471};
1471 1472
1472int __devinit snd_emu10k1_pcm_mic(struct snd_emu10k1 * emu, int device, struct snd_pcm ** rpcm) 1473int snd_emu10k1_pcm_mic(struct snd_emu10k1 *emu, int device,
1474 struct snd_pcm **rpcm)
1473{ 1475{
1474 struct snd_pcm *pcm; 1476 struct snd_pcm *pcm;
1475 int err; 1477 int err;
@@ -1810,7 +1812,8 @@ static struct snd_pcm_ops snd_emu10k1_fx8010_playback_ops = {
1810 .ack = snd_emu10k1_fx8010_playback_transfer, 1812 .ack = snd_emu10k1_fx8010_playback_transfer,
1811}; 1813};
1812 1814
1813int __devinit snd_emu10k1_pcm_efx(struct snd_emu10k1 * emu, int device, struct snd_pcm ** rpcm) 1815int snd_emu10k1_pcm_efx(struct snd_emu10k1 *emu, int device,
1816 struct snd_pcm **rpcm)
1814{ 1817{
1815 struct snd_pcm *pcm; 1818 struct snd_pcm *pcm;
1816 struct snd_kcontrol *kctl; 1819 struct snd_kcontrol *kctl;