Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/sys/dev/usb Pull up following revision(s) (requested by j...
details: https://anonhg.NetBSD.org/src/rev/1e806565925c
branches: netbsd-7
changeset: 798968:1e806565925c
user: martin <martin%NetBSD.org@localhost>
date: Mon Feb 09 09:43:09 2015 +0000
description:
Pull up following revision(s) (requested by jmcneill in ticket #500):
sys/dev/usb/hid.c: revision 1.36
>From FreeBSD via OpenBSD:
Global Item #3 should be Physical Minimum not Maximum according to the
HID spec.
diffstat:
sys/dev/usb/hid.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 4e1bf0b79677 -r 1e806565925c sys/dev/usb/hid.c
--- a/sys/dev/usb/hid.c Mon Feb 09 00:27:28 2015 +0000
+++ b/sys/dev/usb/hid.c Mon Feb 09 09:43:09 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hid.c,v 1.35 2012/02/24 06:48:23 mrg Exp $ */
+/* $NetBSD: hid.c,v 1.35.14.1 2015/02/09 09:43:09 martin Exp $ */
/* $FreeBSD: src/sys/dev/usb/hid.c,v 1.11 1999/11/17 22:33:39 n_hibma Exp $ */
/*
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hid.c,v 1.35 2012/02/24 06:48:23 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hid.c,v 1.35.14.1 2015/02/09 09:43:09 martin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -267,7 +267,7 @@
c->logical_maximum = dval;
break;
case 3:
- c->physical_maximum = dval;
+ c->physical_minimum = dval;
break;
case 4:
c->physical_maximum = dval;
Home |
Main Index |
Thread Index |
Old Index