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/include/ipxe/init.h | |
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/include/ipxe/init.h')
-rw-r--r-- | src/include/ipxe/init.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/ipxe/init.h b/src/include/ipxe/init.h index e051dc6cd..025cfaf37 100644 --- a/src/include/ipxe/init.h +++ b/src/include/ipxe/init.h @@ -26,10 +26,9 @@ struct init_fn { */ #define INIT_EARLY 01 /**< Early initialisation */ -#define INIT_SERIAL 02 /**< Serial driver initialisation */ -#define INIT_CONSOLE 03 /**< Console initialisation */ -#define INIT_NORMAL 04 /**< Normal initialisation */ -#define INIT_LATE 05 /**< Late initialisation */ +#define INIT_CONSOLE 02 /**< Console initialisation */ +#define INIT_NORMAL 03 /**< Normal initialisation */ +#define INIT_LATE 04 /**< Late initialisation */ /** @} */ |