diff options
| author | Michael Brown | 2005-04-27 13:38:43 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-27 13:38:43 +0200 |
| commit | 3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2 (patch) | |
| tree | 1cf3e2869ef2d437e59d66c28b6791ac3f5df883 /src/core | |
| parent | Linker no longer provides start and end symbols for each table; these (diff) | |
| download | ipxe-3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2.tar.gz ipxe-3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2.tar.xz ipxe-3e5bf5fb0660704a2e3f0e4cf83fe411c88048e2.zip | |
console.c uses the generic table mechanism
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/console.c b/src/core/console.c index 6e92cb54f..2fbf86380 100644 --- a/src/core/console.c +++ b/src/core/console.c @@ -18,8 +18,8 @@ */ #include "bios.h" -extern struct console_driver console_drivers[]; -extern struct console_driver console_drivers_end[]; +static struct console_driver console_drivers[0] __table_start ( console ); +static struct console_driver console_drivers_end[0] __table_end ( console ); /***************************************************************************** * putchar : write a single character to each console |
