The following reply was made to PR usb/181425; it has been noted by GNATS.

From: dfil...@freebsd.org (dfilter service)
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: usb/181425: commit references a PR
Date: Tue, 20 Aug 2013 16:21:17 +0000 (UTC)

 Author: hselasky
 Date: Tue Aug 20 16:21:05 2013
 New Revision: 254572
 URL: http://svnweb.freebsd.org/changeset/base/254572
 
 Log:
   Force keyboards which don't have the required
   HID fields to use the USB BOOT protocol for now.
   
   PR:          usb/181425
   Submitted by:        Andrey Zholos <a...@q-fu.com>
   MFC after:   4 weeks
 
 Modified:
   head/sys/dev/usb/input/ukbd.c
 
 Modified: head/sys/dev/usb/input/ukbd.c
 ==============================================================================
 --- head/sys/dev/usb/input/ukbd.c      Tue Aug 20 14:59:31 2013        
(r254571)
 +++ head/sys/dev/usb/input/ukbd.c      Tue Aug 20 16:21:05 2013        
(r254572)
 @@ -1130,8 +1130,12 @@ ukbd_parse_hid(struct ukbd_softc *sc, co
            HID_USAGE2(HUP_KEYBOARD, 0x00),
            hid_input, 0, &sc->sc_loc_events, &flags,
            &sc->sc_id_events)) {
 -              sc->sc_flags |= UKBD_FLAG_EVENTS;
 -              DPRINTFN(1, "Found keyboard events\n");
 +              if (flags & HIO_VARIABLE) {
 +                      DPRINTFN(1, "Ignoring keyboard event control\n");
 +              } else {
 +                      sc->sc_flags |= UKBD_FLAG_EVENTS;
 +                      DPRINTFN(1, "Found keyboard event array\n");
 +              }
        }
  
        /* figure out leds on keyboard */
 _______________________________________________
 svn-src-...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"
 
_______________________________________________
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"

Reply via email to