summaryrefslogtreecommitdiffstats
path: root/sys/dev/vt
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2014-09-02 21:05:45 +0000
committeremaste <emaste@FreeBSD.org>2014-09-02 21:05:45 +0000
commitc40686364ddef3ffaf577104ddb71d6bdb39ef02 (patch)
tree8b47c13a8fa23027a8e68aed14b36e2802db512f /sys/dev/vt
parent2903976d7cad88e1e77227d43621b90e495bf154 (diff)
downloadFreeBSD-src-c40686364ddef3ffaf577104ddb71d6bdb39ef02.zip
FreeBSD-src-c40686364ddef3ffaf577104ddb71d6bdb39ef02.tar.gz
MFC r269185 by ray@: Remove unused macro VT_CONSDEV_DECLARE.
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/dev/vt')
-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