diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-06-29 08:43:16 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-06-29 11:04:10 +0100 |
commit | 2a696ab963fe71296d9495caed1b748f6f7d8971 (patch) | |
tree | bb6b45746dcb160819dc075d052b24bd77f958ac /src/config/config.c | |
parent | 5e622dc085d461d21e0db8f8d9773863ebc1468f (diff) | |
download | ipxe-2a696ab963fe71296d9495caed1b748f6f7d8971.tar.gz |
[serial] Use new UART abstraction in serial console driver
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/config.c b/src/config/config.c index 9cc239496..120a1d4fd 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -55,7 +55,7 @@ PROVIDE_REQUIRING_SYMBOL(); REQUIRE_OBJECT ( bios_console ); #endif #ifdef CONSOLE_SERIAL -REQUIRE_OBJECT ( serial_console ); +REQUIRE_OBJECT ( serial ); #endif #ifdef CONSOLE_DIRECT_VGA REQUIRE_OBJECT ( video_subr ); |