From 82a21151cf1d7a3e9e95b9edbbf74ac10f386d6a Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Tue, 12 Jul 2022 17:41:06 -0700 Subject: [PATCH] Fill in cn_name in struct consdev. It makes debugging easier if the name is filled in from the start. Reviewed by: imp Sponsored by: https://www.patreon.com/cperciva Differential Revision: https://reviews.freebsd.org/D35795 --- sys/sys/cons.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/sys/cons.h b/sys/sys/cons.h index ad73b258df6..fec7f6c01b8 100644 --- a/sys/sys/cons.h +++ b/sys/sys/cons.h @@ -104,6 +104,7 @@ extern struct tty *constty; /* Temporary virtual console. */ static struct consdev name = { \ .cn_ops = &ops, \ .cn_arg = (arg), \ + .cn_name = #name, \ }; \ DATA_SET(cons_set, name)