diff options
| -rw-r--r-- | sound/core/sound.c | 4 | ||||
| -rw-r--r-- | sound/core/sound_oss.c | 2 | ||||
| -rw-r--r-- | sound/sound_core.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sound/core/sound.c b/sound/core/sound.c index 7872a02f6ca9..563d1967a0ad 100644 --- a/sound/core/sound.c +++ b/sound/core/sound.c | |||
| @@ -468,5 +468,5 @@ static void __exit alsa_sound_exit(void) | |||
| 468 | unregister_chrdev(major, "alsa"); | 468 | unregister_chrdev(major, "alsa"); |
| 469 | } | 469 | } |
| 470 | 470 | ||
| 471 | module_init(alsa_sound_init) | 471 | subsys_initcall(alsa_sound_init); |
| 472 | module_exit(alsa_sound_exit) | 472 | module_exit(alsa_sound_exit); |
diff --git a/sound/core/sound_oss.c b/sound/core/sound_oss.c index 7fe12264ff80..0c164e5e4322 100644 --- a/sound/core/sound_oss.c +++ b/sound/core/sound_oss.c | |||
| @@ -93,7 +93,7 @@ static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev) | |||
| 93 | default: | 93 | default: |
| 94 | return -EINVAL; | 94 | return -EINVAL; |
| 95 | } | 95 | } |
| 96 | if (snd_BUG_ON(minor < 0 || minor >= SNDRV_OSS_MINORS)) | 96 | if (minor < 0 || minor >= SNDRV_OSS_MINORS) |
| 97 | return -EINVAL; | 97 | return -EINVAL; |
| 98 | return minor; | 98 | return minor; |
| 99 | } | 99 | } |
diff --git a/sound/sound_core.c b/sound/sound_core.c index dbca7c909a31..7c2d677a2df5 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c | |||
| @@ -61,7 +61,7 @@ static void __exit cleanup_soundcore(void) | |||
| 61 | class_destroy(sound_class); | 61 | class_destroy(sound_class); |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | module_init(init_soundcore); | 64 | subsys_initcall(init_soundcore); |
| 65 | module_exit(cleanup_soundcore); | 65 | module_exit(cleanup_soundcore); |
| 66 | 66 | ||
| 67 | 67 | ||
