git: c875e976f608 - main - vt_splash: Remove debug print

From: Emmanuel Vadot <manu_at_FreeBSD.org>
Date: Mon, 14 Oct 2024 09:01:07 UTC
The branch main has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=c875e976f60862162680fa2e55a489f5c4785931

commit c875e976f60862162680fa2e55a489f5c4785931
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2024-10-14 07:04:32 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2024-10-14 09:01:59 +0000

    vt_splash: Remove debug print
    
    Sponsored by:   Beckhoff Automation GmbH & Co. KG
---
 sys/dev/vt/vt_core.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys/dev/vt/vt_core.c b/sys/dev/vt/vt_core.c
index df97d21745f0..a579183658fa 100644
--- a/sys/dev/vt/vt_core.c
+++ b/sys/dev/vt/vt_core.c
@@ -1677,7 +1677,6 @@ vtterm_splash(struct vt_device *vd)
 		} else {
 			if (si->si_depth != 4)
 				return;
-			printf("SPLASH: width: %d height: %d depth: %d\n", si->si_width, si->si_height, si->si_depth);
 			image = (uintptr_t)si + sizeof(struct splash_info);
 			image = roundup2(image, 8);
 			top = (vd->vd_height - si->si_height) / 2;