diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2016-01-08 15:54:15 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2016-01-08 15:54:15 +0000 |
commit | 7fd88a74dd552b0096c543e413327fbfb350ef80 (patch) | |
tree | 2ce2a269aaed833603cb04a343aa3c5e0049d0e8 /sys/dev/usb/utwitch.c | |
parent | d24eef6904e463e49210a1e3bc560a2fe852dcbe (diff) |
Move HID support files out of dev/usb into new dev/hid directory
These files aren't USB-specific and were used by the previous
Bluetooth implementation, and will be used by the upcoming
HID-over-i2C implementation
ok deraadt
previous version ok kettenis and mpi
Diffstat (limited to 'sys/dev/usb/utwitch.c')
-rw-r--r-- | sys/dev/usb/utwitch.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/utwitch.c b/sys/dev/usb/utwitch.c index b3a60ca9633..9543925a8f0 100644 --- a/sys/dev/usb/utwitch.c +++ b/sys/dev/usb/utwitch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utwitch.c,v 1.14 2014/12/11 18:39:28 mpi Exp $ */ +/* $OpenBSD: utwitch.c,v 1.15 2016/01/08 15:54:14 jcs Exp $ */ /* * Copyright (c) 2010 Yojiro UO <yuo@nui.org> @@ -33,7 +33,8 @@ #include <dev/usb/usbdi_util.h> #include <dev/usb/usbdevs.h> #include <dev/usb/uhidev.h> -#include <dev/usb/hid.h> + +#include <dev/hid/hid.h> #define CMD_NONE 0xf0 #define CMD_EOF 0x0d |