diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-21 17:52:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-21 17:52:32 -0500 |
commit | c7ac6b42ffba28c350cbcd48268f46689f6eb1cc (patch) | |
tree | 51520d34b0fa957a80eb645f6f56bc561ec3d233 | |
parent | 5a9191ff683ce4ebfd2c6a15e2989f5b1f420321 (diff) |
Initialize drivers/media/video/saa7134 late
When compiled-in, make sure the sound system has initialized
before these drivers do.
Reported by Adrian Bunk <bunk@stusta.de>
(The right fix would be to make the sound core use "subsys_initcall()"
and thus initialize before all normal drivers, but this is the quick
and limited safe fix for 2.6.15).
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/media/video/saa7134/saa7134-alsa.c | 3 | ||||
-rw-r--r-- | drivers/media/video/saa7134/saa7134-oss.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/video/saa7134/saa7134-alsa.c b/drivers/media/video/saa7134/saa7134-alsa.c index 953d5fec82d5..6752dd1c1e8a 100644 --- a/drivers/media/video/saa7134/saa7134-alsa.c +++ b/drivers/media/video/saa7134/saa7134-alsa.c | |||
@@ -1028,7 +1028,8 @@ static void saa7134_alsa_exit(void) | |||
1028 | return; | 1028 | return; |
1029 | } | 1029 | } |
1030 | 1030 | ||
1031 | module_init(saa7134_alsa_init); | 1031 | /* We initialize this late, to make sure the sound system is up and running */ |
1032 | late_initcall(saa7134_alsa_init); | ||
1032 | module_exit(saa7134_alsa_exit); | 1033 | module_exit(saa7134_alsa_exit); |
1033 | MODULE_LICENSE("GPL"); | 1034 | MODULE_LICENSE("GPL"); |
1034 | MODULE_AUTHOR("Ricardo Cerqueira"); | 1035 | MODULE_AUTHOR("Ricardo Cerqueira"); |
diff --git a/drivers/media/video/saa7134/saa7134-oss.c b/drivers/media/video/saa7134/saa7134-oss.c index 513a699a6df2..c450d57b2949 100644 --- a/drivers/media/video/saa7134/saa7134-oss.c +++ b/drivers/media/video/saa7134/saa7134-oss.c | |||
@@ -1002,7 +1002,8 @@ static void saa7134_oss_exit(void) | |||
1002 | return; | 1002 | return; |
1003 | } | 1003 | } |
1004 | 1004 | ||
1005 | module_init(saa7134_oss_init); | 1005 | /* We initialize this late, to make sure the sound system is up and running */ |
1006 | late_initcall(saa7134_oss_init); | ||
1006 | module_exit(saa7134_oss_exit); | 1007 | module_exit(saa7134_oss_exit); |
1007 | MODULE_LICENSE("GPL"); | 1008 | MODULE_LICENSE("GPL"); |
1008 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); | 1009 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |