diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-12-06 18:33:15 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 15:13:22 -0500 |
commit | 46654728b55bf5d09dc91fa45f532131d8a609f2 (patch) | |
tree | d1af8667990afe51813ba82d25f495832c7021d4 /sound/oss/btaudio.c | |
parent | 9bfab8cec652c80b4864b4d9247520dca042c2df (diff) |
[PATCH] drivers/sound/oss: Replace pci_module_init() with pci_register_driver()
Replace obsolete pci_module_init() with pci_register_driver().
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Diffstat (limited to 'sound/oss/btaudio.c')
-rw-r--r-- | sound/oss/btaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/btaudio.c b/sound/oss/btaudio.c index a85093fec7be..4007a5680acb 100644 --- a/sound/oss/btaudio.c +++ b/sound/oss/btaudio.c | |||
@@ -1101,7 +1101,7 @@ static int btaudio_init_module(void) | |||
1101 | digital ? "digital" : "", | 1101 | digital ? "digital" : "", |
1102 | analog && digital ? "+" : "", | 1102 | analog && digital ? "+" : "", |
1103 | analog ? "analog" : ""); | 1103 | analog ? "analog" : ""); |
1104 | return pci_module_init(&btaudio_pci_driver); | 1104 | return pci_register_driver(&btaudio_pci_driver); |
1105 | } | 1105 | } |
1106 | 1106 | ||
1107 | static void btaudio_cleanup_module(void) | 1107 | static void btaudio_cleanup_module(void) |