From: Michael Brown Date: Tue, 3 Jul 2007 19:39:30 +0000 (+0100) Subject: Should be using the generic device probe mechanism, when (if) they X-Git-Tag: v0.9.3~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=438d1cc0b99d502f9fa86f59045fa0b477d548df;p=thirdparty%2Fipxe.git Should be using the generic device probe mechanism, when (if) they eventually get updated. --- diff --git a/src/core/btext.c b/src/core/btext.c index 0266f16b6..0b2ddd629 100644 --- a/src/core/btext.c +++ b/src/core/btext.c @@ -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 /**********************************************/ /* */ diff --git a/src/core/pcmcia.c b/src/core/pcmcia.c index 3db9b84d6..631971ef5 100644 --- a/src/core/pcmcia.c +++ b/src/core/pcmcia.c @@ -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