diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-27 11:38:43 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-27 11:38:43 +0000 |
commit | 3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2 (patch) | |
tree | 1cf3e2869ef2d437e59d66c28b6791ac3f5df883 /src/include/console.h | |
parent | 69f09ebdd88344dd23df496246b4a487d0e35a6d (diff) | |
download | ipxe-3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2.tar.gz |
console.c uses the generic table mechanism
Diffstat (limited to 'src/include/console.h')
-rw-r--r-- | src/include/console.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/console.h b/src/include/console.h index 55ce73095..146fd9c3e 100644 --- a/src/include/console.h +++ b/src/include/console.h @@ -3,6 +3,7 @@ #include "stdint.h" #include "vsprintf.h" +#include "tables.h" /* * Consoles that cannot be used before their INIT_FN() has completed @@ -18,7 +19,7 @@ struct console_driver { }; #define __console_driver \ - __attribute__ (( used, __section__ ( ".drivers.console" ) )) + __attribute__ (( used, __table_section ( console, 01 ) )) /* Function prototypes */ |