Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Since there's a bit of code that is conditionall...



details:   https://anonhg.NetBSD.org/src/rev/350325bbb500
branches:  trunk
changeset: 379935:350325bbb500
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sun Jun 27 22:41:55 2021 +0000

description:
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.

diffstat:

 sys/dev/usb/ukbd.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (25 lines):

diff -r f600d442e14c -r 350325bbb500 sys/dev/usb/ukbd.c
--- a/sys/dev/usb/ukbd.c        Sun Jun 27 21:52:18 2021 +0000
+++ b/sys/dev/usb/ukbd.c        Sun Jun 27 22:41:55 2021 +0000
@@ -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 */
 



Home | Main Index | Thread Index | Old Index