vt_mode
struct vt_mode smode;
struct vt_mode smode;
struct vt_mode *mode;
mode = (struct vt_mode *)data;
bcopy(data, &scp->smode, sizeof(struct vt_mode));
bcopy(&scp->smode, data, sizeof(struct vt_mode));
struct vt_mode smode; /* switch mode */
bool vt_mode;
bool vt_mode = FALSE;
vt_mode = dcb_config->vt_mode;
if (!((tc_count == 8 && vt_mode == FALSE) || tc_count == 4))
if (tc_count == 8 && vt_mode == FALSE) {
} else if (tc_count == 4 && vt_mode == FALSE) {
} else if (tc_count == 4 && vt_mode == TRUE) {
if (dcb_config->vt_mode)
if (dcb_config->vt_mode)
typedef struct vt_mode vtmode_t;