Module Name: src Committed By: dholland Date: Sat Jan 23 01:15:23 UTC 2016
Modified Files: src/sys/dev/usb: usbhid.h Log Message: Use correct include guard. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/dev/usb/usbhid.h 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/usbhid.h diff -u src/sys/dev/usb/usbhid.h:1.14 src/sys/dev/usb/usbhid.h:1.15 --- src/sys/dev/usb/usbhid.h:1.14 Tue Jan 17 03:49:20 2012 +++ src/sys/dev/usb/usbhid.h Sat Jan 23 01:15:23 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: usbhid.h,v 1.14 2012/01/17 03:49:20 christos Exp $ */ +/* $NetBSD: usbhid.h,v 1.15 2016/01/23 01:15:23 dholland Exp $ */ /* $FreeBSD: src/sys/dev/usb/usbhid.h,v 1.7 1999/11/17 22:33:51 n_hibma Exp $ */ /* @@ -32,8 +32,8 @@ */ -#ifndef _USBHID_H_ -#define _USBHID_H_ +#ifndef _DEV_USB_USBHID_H_ +#define _DEV_USB_USBHID_H_ #define UR_GET_HID_DESCRIPTOR 0x06 #define UDESC_HID 0x21 @@ -192,4 +192,4 @@ typedef struct usb_hid_descriptor { #define HIO_VOLATILE 0x080 #define HIO_BUFBYTES 0x100 -#endif /* _USBHID_H_ */ +#endif /* _DEV_USB_USBHID_H_ */