Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 179597
b: refs/heads/master
c: 4dee8ba
h: refs/heads/master
i:
  179595: 48120a2
v: v3
  • Loading branch information
Takashi Iwai committed Jan 13, 2010
1 parent 7209804 commit 089e817
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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: 808c569f3609b37642d1e08373e3de829b99d0f8
refs/heads/master: 4dee8baa18d611b6dc854e1cc193550ff6f687be
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");
}

subsys_initcall(alsa_sound_init);
module_exit(alsa_sound_exit);
module_init(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 (minor < 0 || minor >= SNDRV_OSS_MINORS)
if (snd_BUG_ON(minor < 0 || minor >= SNDRV_OSS_MINORS))
return -EINVAL;
return minor;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/pci/hda/patch_realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -17251,7 +17251,7 @@ static struct snd_pci_quirk alc662_cfg_tbl[] = {
SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS),
SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
ALC662_3ST_6ch_DIG),
SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB200", ALC663_ASUS_MODE4),
SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB20x", ALC662_AUTO),
SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10),
SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
ALC662_3ST_6ch_DIG),
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);
}

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


Expand Down

0 comments on commit 089e817

Please sign in to comment.