[PATCH] pcmcia: defer ide-cs initialization after other IDE drivers started up

Avoid registering PCMCIA CF cards before other IDE stuff. This means the risk
of /dev/hd* being re-ordered is lessened. The _sane_ thing to assert any
ordering is to use udev, nameif and so on, of course.

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Dominik Brodowski 2005-08-01 14:16:55 +02:00 committed by Linus Torvalds
parent b9c55d29e9
commit 2b8d466937
1 changed files with 1 additions and 1 deletions

View File

@ -508,5 +508,5 @@ static void __exit exit_ide_cs(void)
BUG_ON(dev_list != NULL);
}
module_init(init_ide_cs);
late_initcall(init_ide_cs);
module_exit(exit_ide_cs);