Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Jul 2008 13:42:23 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 145225 for review
Message-ID:  <200807141342.m6EDgNKd016709@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=145225

Change 145225 by hselasky@hselasky_laptop001 on 2008/07/14 13:42:04

	
	USB lookup bugfix. Have switched less than and greater than macros.

Affected files ...

.. //depot/projects/usb/src/sys/dev/usb2/core/usb2_lookup.h#6 edit

Differences ...

==== //depot/projects/usb/src/sys/dev/usb2/core/usb2_lookup.h#6 (text+ko) ====

@@ -79,10 +79,10 @@
 #define	USB_VPI(vend,prod,info)			\
   USB_VENDOR(vend), USB_PRODUCT(prod), USB_DRIVER_INFO(info)
 
-#define	USB_DEV_BCD_LTEQ(lo)	/* less than or equal */ \
+#define	USB_DEV_BCD_GTEQ(lo)	/* greater than or equal */ \
   .match_flag_dev_lo = 1, .bcdDevice_lo = (lo)
 
-#define	USB_DEV_BCD_GTEQ(hi)	/* greater than or equal */ \
+#define	USB_DEV_BCD_LTEQ(hi)	/* less than or equal */ \
   .match_flag_dev_hi = 1, .bcdDevice_hi = (hi)
 
 #define	USB_DEV_CLASS(dc)			\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200807141342.m6EDgNKd016709>