aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vt/vt.h
diff options
context:
space:
mode:
authorAleksandr Rybalko <ray@FreeBSD.org>2014-07-28 14:14:33 +0000
committerAleksandr Rybalko <ray@FreeBSD.org>2014-07-28 14:14:33 +0000
commit3f71a6b88a2eecfa05f7c03ce8bab556be1a77fc (patch)
tree09b90eb4b53854ce4099efd3036d173c240d7505 /sys/dev/vt/vt.h
parent0bd50b2210381ba36da26d301f3d1bff134bc4b2 (diff)
downloadsrc-3f71a6b88a2eecfa05f7c03ce8bab556be1a77fc.tar.gz
src-3f71a6b88a2eecfa05f7c03ce8bab556be1a77fc.zip
Remove unused macro VT_CONSDEV_DECLARE. Join console device now declared in one
place. MFC after: 1 week Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=269185
Diffstat (limited to 'sys/dev/vt/vt.h')
-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 cd6aa5ba4db2..49c3de3193e5 100644
--- a/sys/dev/vt/vt.h
+++ b/sys/dev/vt/vt.h
@@ -347,54 +347,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)