Module Name: src
Committed By: skrll
Date: Wed Dec 23 09:52:41 UTC 2015
Modified Files:
src/sys/dev/usb [nick-nhusb]: usbdi.h
Log Message:
Group flags together. No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.90.4.8 -r1.90.4.9 src/sys/dev/usb/usbdi.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/usbdi.h
diff -u src/sys/dev/usb/usbdi.h:1.90.4.8 src/sys/dev/usb/usbdi.h:1.90.4.9
--- src/sys/dev/usb/usbdi.h:1.90.4.8 Tue Oct 6 21:32:15 2015
+++ src/sys/dev/usb/usbdi.h Wed Dec 23 09:52:41 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: usbdi.h,v 1.90.4.8 2015/10/06 21:32:15 skrll Exp $ */
+/* $NetBSD: usbdi.h,v 1.90.4.9 2015/12/23 09:52:41 skrll Exp $ */
/* $FreeBSD: src/sys/dev/usb/usbdi.h,v 1.18 1999/11/17 22:33:49 n_hibma Exp $ */
/*
@@ -67,13 +67,13 @@ typedef enum { /* keep in sync with usb
typedef void (*usbd_callback)(struct usbd_xfer *, void *, usbd_status);
+/* Use default (specified by ep. desc.) interval on interrupt pipe */
+#define USBD_DEFAULT_INTERVAL (-1)
+
/* Open flags */
#define USBD_EXCLUSIVE_USE 0x01
#define USBD_MPSAFE 0x80
-/* Use default (specified by ep. desc.) interval on interrupt pipe */
-#define USBD_DEFAULT_INTERVAL (-1)
-
/* Request flags */
#define USBD_SYNCHRONOUS 0x02 /* wait for completion */
/* in usb.h #define USBD_SHORT_XFER_OK 0x04*/ /* allow short reads */