aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/sound_oss.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/core/sound_oss.c')
-rw-r--r--sound/core/sound_oss.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sound/core/sound_oss.c b/sound/core/sound_oss.c
index 3ae1c0d7ffd..d0be32b517c 100644
--- a/sound/core/sound_oss.c
+++ b/sound/core/sound_oss.c
@@ -244,11 +244,9 @@ static void snd_minor_info_oss_read(struct snd_info_entry *entry,
244 up(&sound_oss_mutex); 244 up(&sound_oss_mutex);
245} 245}
246 246
247#endif /* CONFIG_PROC_FS */
248 247
249int __init snd_minor_info_oss_init(void) 248int __init snd_minor_info_oss_init(void)
250{ 249{
251#ifdef CONFIG_PROC_FS
252 struct snd_info_entry *entry; 250 struct snd_info_entry *entry;
253 251
254 entry = snd_info_create_module_entry(THIS_MODULE, "devices", snd_oss_root); 252 entry = snd_info_create_module_entry(THIS_MODULE, "devices", snd_oss_root);
@@ -261,17 +259,15 @@ int __init snd_minor_info_oss_init(void)
261 } 259 }
262 } 260 }
263 snd_minor_info_oss_entry = entry; 261 snd_minor_info_oss_entry = entry;
264#endif
265 return 0; 262 return 0;
266} 263}
267 264
268int __exit snd_minor_info_oss_done(void) 265int __exit snd_minor_info_oss_done(void)
269{ 266{
270#ifdef CONFIG_PROC_FS
271 if (snd_minor_info_oss_entry) 267 if (snd_minor_info_oss_entry)
272 snd_info_unregister(snd_minor_info_oss_entry); 268 snd_info_unregister(snd_minor_info_oss_entry);
273#endif
274 return 0; 269 return 0;
275} 270}
271#endif /* CONFIG_PROC_FS */
276 272
277#endif /* CONFIG_SND_OSSEMUL */ 273#endif /* CONFIG_SND_OSSEMUL */