diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-11-11 17:23:10 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-11-11 17:23:10 +0000 |
commit | 0c35f403d88b00fd995bc5d1963bb541f4e99307 (patch) | |
tree | 8c8af360468c54f9fbb8f1c4f15f22a46a005d86 /sys/dev/hid | |
parent | aa8399f4e5c3190247b50f500ccc55a93360060e (diff) |
Debug was accidentally left enabled in previous commit.
Diffstat (limited to 'sys/dev/hid')
-rw-r--r-- | sys/dev/hid/hidcc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/hid/hidcc.c b/sys/dev/hid/hidcc.c index d45b9eca936..ee5e3208067 100644 --- a/sys/dev/hid/hidcc.c +++ b/sys/dev/hid/hidcc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hidcc.c,v 1.3 2022/11/11 15:25:13 matthieu Exp $ */ +/* $OpenBSD: hidcc.c,v 1.4 2022/11/11 17:23:09 matthieu Exp $ */ /* * Copyright (c) 2022 Anton Lindqvist <anton@openbsd.org> @@ -30,7 +30,7 @@ #define DEVNAME(sc) ((sc)->sc_dev->dv_xname) -#define HIDCC_DEBUG +/* #define HIDCC_DEBUG */ #ifdef HIDCC_DEBUG #define DPRINTF(x...) do { if (hidcc_debug) printf(x); } while (0) struct hidcc; |