Module Name: src Committed By: pgoyette Date: Sun Jun 27 22:41:55 UTC 2021
Modified Files: src/sys/dev/usb: ukbd.c Log Message: Since there's a bit of code that is conditionally compiled based on USBVERBOSE, we need to include the opt_usbverbose.h header to get any possible definition of this macro. XXX Note that this code will NOT get included in the loadable module XXX for USBVERBOSE. To generate a diff of this commit: cvs rdiff -u -r1.150 -r1.151 src/sys/dev/usb/ukbd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/ukbd.c diff -u src/sys/dev/usb/ukbd.c:1.150 src/sys/dev/usb/ukbd.c:1.151 --- src/sys/dev/usb/ukbd.c:1.150 Sat Apr 24 23:36:59 2021 +++ src/sys/dev/usb/ukbd.c Sun Jun 27 22:41:55 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ukbd.c,v 1.150 2021/04/24 23:36:59 thorpej Exp $ */ +/* $NetBSD: ukbd.c,v 1.151 2021/06/27 22:41:55 pgoyette Exp $ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -35,13 +35,14 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ukbd.c,v 1.150 2021/04/24 23:36:59 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ukbd.c,v 1.151 2021/06/27 22:41:55 pgoyette Exp $"); #ifdef _KERNEL_OPT #include "opt_ddb.h" #include "opt_ukbd.h" #include "opt_ukbd_layout.h" #include "opt_usb.h" +#include "opt_usbverbose.h" #include "opt_wsdisplay_compat.h" #endif /* _KERNEL_OPT */