Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 179602
b: refs/heads/master
c: 6321bd6
h: refs/heads/master
v: v3
  • Loading branch information
Takashi Iwai committed Jan 18, 2010
1 parent 4905361 commit 7a5469e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eaa9b3a748539651f50e3a234c8854e1b42a839a
refs/heads/master: 6321bd634eb755c87ca18c3b1ef348a213c1f597
4 changes: 2 additions & 2 deletions trunk/sound/core/sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,5 +468,5 @@ static void __exit alsa_sound_exit(void)
unregister_chrdev(major, "alsa");
}

module_init(alsa_sound_init)
module_exit(alsa_sound_exit)
subsys_initcall(alsa_sound_init);
module_exit(alsa_sound_exit);
2 changes: 1 addition & 1 deletion trunk/sound/core/sound_oss.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
default:
return -EINVAL;
}
if (snd_BUG_ON(minor < 0 || minor >= SNDRV_OSS_MINORS))
if (minor < 0 || minor >= SNDRV_OSS_MINORS)
return -EINVAL;
return minor;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/sound_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void __exit cleanup_soundcore(void)
class_destroy(sound_class);
}

module_init(init_soundcore);
subsys_initcall(init_soundcore);
module_exit(cleanup_soundcore);


Expand Down

0 comments on commit 7a5469e

Please sign in to comment.