aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Kondratyev <wulf@FreeBSD.org>2026-06-13 18:08:58 +0000
committerVladimir Kondratyev <wulf@FreeBSD.org>2026-06-13 18:08:58 +0000
commit511d749ecc02c6fad142e10f6c8227361b844a01 (patch)
tree0ac42d7c43fe7af17f73b1e639038f4e425bfafc
parentde2a1366022d71c1d650832d378964c4cbe65ba7 (diff)
LinuxKPI: sync linuxkpi_video with Linux 6.12
MFC after: 1 week
-rw-r--r--sys/compat/linuxkpi/common/src/linux_hdmi.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_hdmi.c b/sys/compat/linuxkpi/common/src/linux_hdmi.c
index fc47693e913c..76905f659baa 100644
--- a/sys/compat/linuxkpi/common/src/linux_hdmi.c
+++ b/sys/compat/linuxkpi/common/src/linux_hdmi.c
@@ -1314,17 +1314,11 @@ static void hdmi_spd_infoframe_log(const char *level,
struct device *dev,
const struct hdmi_spd_infoframe *frame)
{
- u8 buf[17];
-
hdmi_infoframe_log_header(level, dev,
(const struct hdmi_any_infoframe *)frame);
- memset(buf, 0, sizeof(buf));
-
- strncpy(buf, frame->vendor, 8);
- hdmi_log(" vendor: %s\n", buf);
- strncpy(buf, frame->product, 16);
- hdmi_log(" product: %s\n", buf);
+ hdmi_log(" vendor: %.8s\n", frame->vendor);
+ hdmi_log(" product: %.16s\n", frame->product);
hdmi_log(" source device information: %s (0x%x)\n",
hdmi_spd_sdi_get_name(frame->sdi), frame->sdi);
}