Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15279
b: refs/heads/master
c: c7ac6b4
h: refs/heads/master
i:
  15277: c11b0e3
  15275: b129fe7
  15271: 8302b8b
  15263: a36770f
v: v3
  • Loading branch information
Linus Torvalds committed Dec 21, 2005
1 parent d9e92ea commit 3c606b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 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: 5a9191ff683ce4ebfd2c6a15e2989f5b1f420321
refs/heads/master: c7ac6b42ffba28c350cbcd48268f46689f6eb1cc
3 changes: 2 additions & 1 deletion trunk/drivers/media/video/saa7134/saa7134-alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,8 @@ static void saa7134_alsa_exit(void)
return;
}

module_init(saa7134_alsa_init);
/* We initialize this late, to make sure the sound system is up and running */
late_initcall(saa7134_alsa_init);
module_exit(saa7134_alsa_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Ricardo Cerqueira");
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/media/video/saa7134/saa7134-oss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,8 @@ static void saa7134_oss_exit(void)
return;
}

module_init(saa7134_oss_init);
/* We initialize this late, to make sure the sound system is up and running */
late_initcall(saa7134_oss_init);
module_exit(saa7134_oss_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
Expand Down

0 comments on commit 3c606b8

Please sign in to comment.