]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Should be using the generic device probe mechanism, when (if) they
authorMichael Brown <mcb30@etherboot.org>
Tue, 3 Jul 2007 19:39:30 +0000 (20:39 +0100)
committerMichael Brown <mcb30@etherboot.org>
Tue, 3 Jul 2007 19:39:30 +0000 (20:39 +0100)
eventually get updated.

src/core/btext.c
src/core/pcmcia.c

index 0266f16b65f7aa9d7f698977bec77e36a424d279..0b2ddd6290acec5e7ebbcfc2f99dd2698e44934a 100644 (file)
@@ -417,9 +417,6 @@ struct console_driver btext_console __console_driver = {
        .disabled = 1,
 };
 
-INIT_FN ( INIT_CONSOLE, btext_init, NULL );
-
-
 //come from linux/drivers/video/font-8x16.c
 /**********************************************/
 /*                                            */
index 3db9b84d6b459f56c211d63661ff8ac0f2584614..631971ef5c0ef364e4c36b6c6582baf23b55d293 100644 (file)
@@ -264,6 +264,4 @@ static void pcmcia_shutdown_all(void) {
        printf("Shutdown of PCMCIA subsystem completed");
 }
 
-INIT_FN ( INIT_PCMCIA, pcmcia_init_all, pcmcia_shutdown_all );
-
 #endif