WSDISPLAYIO_SFONT: Do not attempt to print to the console in the middle of
resizing when DEBUG is defined.
This commit is contained in:
parent
1a51c84815
commit
5d8748607d
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wsdisplay.c,v 1.147 2018/09/26 09:04:12 bouyer Exp $ */
|
||||
/* $NetBSD: wsdisplay.c,v 1.148 2018/11/15 13:50:51 jmcneill Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wsdisplay.c,v 1.147 2018/09/26 09:04:12 bouyer Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: wsdisplay.c,v 1.148 2018/11/15 13:50:51 jmcneill Exp $");
|
||||
|
||||
#ifdef _KERNEL_OPT
|
||||
#include "opt_wsdisplay_compat.h"
|
||||
|
@ -1389,11 +1389,6 @@ wsdisplay_internal_ioctl(struct wsdisplay_softc *sc, struct wsscreen *scr,
|
|||
if (!error && WSSCREEN_HAS_EMULATOR(scr)) {
|
||||
(*scr->scr_dconf->wsemul->reset)
|
||||
(scr->scr_dconf->wsemulcookie, WSEMUL_SYNCFONT);
|
||||
#ifdef DEBUG
|
||||
printf("resize: %d %d\n",
|
||||
scr->scr_dconf->scrdata->nrows,
|
||||
scr->scr_dconf->scrdata->ncols);
|
||||
#endif
|
||||
if (scr->scr_dconf->wsemul->resize) {
|
||||
(*scr->scr_dconf->wsemul->resize)
|
||||
(scr->scr_dconf->wsemulcookie,
|
||||
|
|
Loading…
Reference in New Issue