diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-06 18:35:28 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-12-07 07:34:46 +0100 |
commit | 87f9796a0336efa46d0fbecfb2875afe07dd6972 (patch) | |
tree | 9d232dc63b56e4f2ba9819d40089f86586956403 /sound/usb/6fire/chip.c | |
parent | ALSA: drivers: remove __dev* attributes (diff) | |
download | linux-87f9796a0336efa46d0fbecfb2875afe07dd6972.tar.xz linux-87f9796a0336efa46d0fbecfb2875afe07dd6972.zip |
ALSA: snd-usb-6fire: 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/usb/6fire/chip.c')
-rw-r--r-- | sound/usb/6fire/chip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/6fire/chip.c b/sound/usb/6fire/chip.c index fc8cc823e438..4394ae796356 100644 --- a/sound/usb/6fire/chip.c +++ b/sound/usb/6fire/chip.c @@ -82,8 +82,8 @@ static void usb6fire_chip_destroy(struct sfire_chip *chip) } } -static int __devinit usb6fire_chip_probe(struct usb_interface *intf, - const struct usb_device_id *usb_id) +static int usb6fire_chip_probe(struct usb_interface *intf, + const struct usb_device_id *usb_id) { int ret; int i; |