Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/sys/dev/usb Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/709bb4e4ba32
branches:  netbsd-9
changeset: 359723:709bb4e4ba32
user:      snj <snj%NetBSD.org@localhost>
date:      Tue Jan 18 20:02:23 2022 +0000

description:
Pull up following revision(s) (requested by martin in ticket #1405):

        sys/dev/usb/usb_quirks.c: revision 1.102

Ignore new APC UPS devices when matching uhid devices.

diffstat:

 sys/dev/usb/usb_quirks.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r b2bb6ceeb235 -r 709bb4e4ba32 sys/dev/usb/usb_quirks.c
--- a/sys/dev/usb/usb_quirks.c  Tue Jan 18 19:59:58 2022 +0000
+++ b/sys/dev/usb/usb_quirks.c  Tue Jan 18 20:02:23 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usb_quirks.c,v 1.92.2.2 2022/01/18 18:48:00 martin Exp $       */
+/*     $NetBSD: usb_quirks.c,v 1.92.2.3 2022/01/18 20:02:23 snj Exp $  */
 /*     $FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.30 2003/01/02 04:15:55 imp Exp $     */
 
 /*
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.92.2.2 2022/01/18 18:48:00 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.92.2.3 2022/01/18 20:02:23 snj Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -184,6 +184,8 @@
  /* Devices which should be ignored by uhid */
  { USB_VENDOR_APC,             USB_PRODUCT_APC_UPS,                    ANY,
        { UQ_HID_IGNORE, NULL }},
+ { USB_VENDOR_APC,             USB_PRODUCT_APC_UPS3,                   ANY,
+       { UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_CYBERPOWER,      USB_PRODUCT_CYBERPOWER_UPS0,            ANY,
        { UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_CYBERPOWER,      USB_PRODUCT_CYBERPOWER_UPS,             ANY,



Home | Main Index | Thread Index | Old Index