git: 6ea7e1f92882 - main - hkbd: fix compliation error for GENERIC

From: ShengYi Hung <aokblast_at_FreeBSD.org>
Date: Sat, 23 Aug 2025 07:35:37 UTC
The branch main has been updated by aokblast:

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

commit 6ea7e1f92882706cc8818a13e8bd55b7d2f48e27
Author:     ShengYi Hung <aokblast@FreeBSD.org>
AuthorDate: 2025-08-23 05:36:39 +0000
Commit:     ShengYi Hung <aokblast@FreeBSD.org>
CommitDate: 2025-08-23 07:34:57 +0000

    hkbd: fix compliation error for GENERIC
    
    Reported by:    gbe
    Approved by:    lwhsu (mentor)
    MFC after:      1 week
    Differential Revision: https://reviews.freebsd.org/D52135
---
 sys/dev/hid/hkbd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/hid/hkbd.c b/sys/dev/hid/hkbd.c
index 86a2320092be..6255c42d3b62 100644
--- a/sys/dev/hid/hkbd.c
+++ b/sys/dev/hid/hkbd.c
@@ -1828,7 +1828,7 @@ hkbd_set_leds(struct hkbd_softc *sc, uint8_t leds)
 	SYSCONS_UNLOCK();
 	error = hid_write(sc->sc_dev, buf, len);
 	SYSCONS_LOCK();
-	DPRINTF(("error %d", error));
+	DPRINTF("error %d", error);
 
 	return (error);
 }