summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/vt/vt.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys/dev/vt/vt.h b/sys/dev/vt/vt.h
index b216499..f202540 100644
--- a/sys/dev/vt/vt.h
+++ b/sys/dev/vt/vt.h
@@ -348,54 +348,6 @@ void vt_upgrade(struct vt_device *vd);
#define VT_FB_DEFAULT_HEIGHT 1200
#endif
-#define VT_CONSDEV_DECLARE(driver, width, height, softc) \
-static struct terminal driver ## _consterm; \
-static struct vt_window driver ## _conswindow; \
-static struct vt_device driver ## _consdev = { \
- .vd_driver = &driver, \
- .vd_softc = (softc), \
- .vd_flags = VDF_INVALID, \
- .vd_windows = { [VT_CONSWINDOW] = &driver ## _conswindow, }, \
- .vd_curwindow = &driver ## _conswindow, \
- .vd_markedwin = NULL, \
- .vd_kbstate = 0, \
-}; \
-static term_char_t driver ## _constextbuf[(width) * \
- (VBF_DEFAULT_HISTORY_SIZE)]; \
-static term_char_t *driver ## _constextbufrows[ \
- VBF_DEFAULT_HISTORY_SIZE]; \
-static struct vt_window driver ## _conswindow = { \
- .vw_number = VT_CONSWINDOW, \
- .vw_flags = VWF_CONSOLE, \
- .vw_buf = { \
- .vb_buffer = driver ## _constextbuf, \
- .vb_rows = driver ## _constextbufrows, \
- .vb_history_size = VBF_DEFAULT_HISTORY_SIZE, \
- .vb_curroffset = 0, \
- .vb_roffset = 0, \
- .vb_flags = VBF_STATIC, \
- .vb_mark_start = { \
- .tp_row = 0, \
- .tp_col = 0, \
- }, \
- .vb_mark_end = { \
- .tp_row = 0, \
- .tp_col = 0, \
- }, \
- .vb_scr_size = { \
- .tp_row = height, \
- .tp_col = width, \
- }, \
- }, \
- .vw_device = &driver ## _consdev, \
- .vw_terminal = &driver ## _consterm, \
- .vw_kbdmode = K_XLATE, \
-}; \
-TERMINAL_DECLARE_EARLY(driver ## _consterm, vt_termclass, \
- &driver ## _conswindow); \
-SYSINIT(vt_early_cons, SI_SUB_INT_CONFIG_HOOKS, SI_ORDER_ANY, \
- vt_upgrade, &driver ## _consdev)
-
/* name argument is not used yet. */
#define VT_DRIVER_DECLARE(name, drv) DATA_SET(vt_drv_set, drv)
OpenPOWER on IntegriCloud