[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>

authored by Dominik Brodowski and committed by Linus Torvalds 2b8d4669 b9c55d29

+1 -1
+1 -1
drivers/ide/legacy/ide-cs.c
··· 508 BUG_ON(dev_list != NULL); 509 } 510 511 - module_init(init_ide_cs); 512 module_exit(exit_ide_cs);
··· 508 BUG_ON(dev_list != NULL); 509 } 510 511 + late_initcall(init_ide_cs); 512 module_exit(exit_ide_cs);