| Commit message (Expand) | Author | Age | Files | Lines |
* | Nuke all occurrences of usbd_abort_pipe() if it gets called right |  mglocker | 2020-07-31 | 1 | -2/+1 |
* | Remove unused function argument. |  mpi | 2020-03-16 | 1 | -5/+5 |
* | use the UE_GET_XFERTYPE macro where applicable |  jasper | 2020-02-22 | 1 | -2/+2 |
* | Use the `iface' argument from the *attach() function instead of calling |  mpi | 2019-01-07 | 1 | -7/+2 |
* | Pass free(9) sizes for port arrays. |  mpi | 2018-11-10 | 1 | -14/+10 |
* | A pile of sizes to free(9). In test for a few days in snapshots. |  deraadt | 2017-04-08 | 1 | -6/+6 |
* | Avoid calling usbd_set_config_index() in *_attach() and let the stack |  mpi | 2016-09-02 | 1 | -9/+5 |
* | Unconnected xhci(4) super speed ports may come up with the XHCI_PS_WRC, |  kettenis | 2015-11-29 | 1 | -1/+7 |
* | Clear the UPS_C_PORT_RESET feature when exploring. Apparently xhci(4) super |  kettenis | 2015-11-29 | 1 | -1/+7 |
* | Move the logic to handle a "connect status change" from uhub_explore() |  mpi | 2015-06-29 | 1 | -124/+134 |
* | Make xhci(4)'s root hub report the same status bits as physical USB3 hubs. |  mpi | 2015-06-22 | 1 | -9/+7 |
* | Bring back r1.78 and r1.79, now that ajactouto@'s regression has |  mpi | 2015-06-15 | 1 | -14/+33 |
* | KNF. |  uebayasi | 2015-02-12 | 1 | -2/+2 |
* | Report the TT Think Time of USB2.0 Hubs. |  mpi | 2015-01-02 | 1 | -2/+3 |
* | More malloc() -> mallocarray() in the kernel. |  doug | 2014-12-09 | 1 | -3/+3 |
* | Revert the logic to skip ports which status hasn't changed, it introduces |  mpi | 2014-11-23 | 1 | -33/+14 |
* | Force a status check of all the ports of a newly attached hub. In the |  mpi | 2014-11-20 | 1 | -6/+7 |
* | When a bus is explored, do not probe the ports which status hasn't |  mpi | 2014-11-11 | 1 | -15/+32 |
* | Add some fields needed for TT support. |  mpi | 2014-11-10 | 1 | -1/+3 |
* | Give Super-Speed hubs a chance to route USB 3.0 transfers. |  mpi | 2014-11-07 | 1 | -1/+16 |
* | Remove the port status argument from usbd_reset_port(). We don't do |  mpi | 2014-11-01 | 1 | -2/+2 |
* | Check that the speed of a new device does not exceed its parent's speed |  mpi | 2014-10-01 | 1 | -1/+8 |
* | Ask for the descriptor size corresponding to the number of ports present |  mpi | 2014-08-10 | 1 | -4/+5 |
* | Correctly recognize Super Speed devices, this is part of the work to |  mpi | 2014-08-09 | 1 | -6/+24 |
* | Handle super speed hub descriptors. |  mpi | 2014-08-09 | 1 | -10/+27 |
* | Do not store the whole USB hub descriptor in the "struct usbd_hub" |  mpi | 2014-08-09 | 1 | -14/+10 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -9/+9 |
* | autoconf(9) is your friend and it knows you more than you think. It |  mpi | 2014-07-09 | 1 | -39/+11 |
* | Apart from the early exploration done to find a console keyboard during |  mpi | 2014-05-28 | 1 | -1/+4 |
* | Kill dead links. |  mpi | 2014-03-11 | 1 | -5/+1 |
* | Recognize super speed devices, note that this driver sill uses |  mpi | 2014-03-08 | 1 | -2/+4 |
* | Indtroduce usbd_get_hub_descriptor() to start cleaning uhub(4)'s mess. |  mpi | 2014-03-07 | 1 | -15/+10 |
* | Make uhub_explore() return an int rather than a usbd_satus. This has |  mpi | 2013-10-19 | 1 | -7/+8 |
* | Simplify the debug output to help diagnose problems without needing |  mpi | 2013-05-21 | 1 | -59/+20 |
* | Get rid of various 'typedef struct' definitions and use plain structure |  mglocker | 2013-04-15 | 1 | -10/+10 |
* | proc.h is way too much header for usb to handle. |  tedu | 2013-03-28 | 1 | -2/+1 |
* | Avoid a potential NULL dereference if nports == 0. |  stsp | 2011-09-29 | 1 | -4/+5 |
* | Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing |  matthew | 2011-07-03 | 1 | -4/+1 |
* | garbage collect "usb events". without /dev/usb there is no way to access |  jakemsr | 2011-01-25 | 1 | -6/+1 |
* | * replace per-driver dying and/or other state variables with use of |  jakemsr | 2010-12-06 | 1 | -3/+3 |
* | add a 'dying' flag to struct usbd_bus. use this to signify the bus |  jakemsr | 2010-09-23 | 1 | -1/+6 |
* | instead of running usb_explore() from individual kthreads for each |  jakemsr | 2010-09-23 | 1 | -2/+2 |
* | The size of sc_status[] (the buffer for USB hub's interrupt pipe) will be |  sasano | 2010-09-21 | 1 | -5/+17 |
* | do not need to pad up the uhub allocation anymore, from miod |  deraadt | 2009-11-13 | 1 | -3/+2 |
* | Avoid using the trick of malloc'ing more than a struct to grow the array |  deraadt | 2009-11-12 | 1 | -1/+11 |
* | Get rid of devact enum, substitute it with an int and coresponding defines. |  pirofti | 2009-10-13 | 1 | -3/+3 |
* | First pass at removing clauses 3 and 4 from NetBSD licenses. |  ray | 2008-06-26 | 1 | -8/+1 |
* | treat usb vendor/product names as a locator, and have usbd_print handle it, |  deraadt | 2007-10-11 | 1 | -6/+1 |
* | Remove the definition and usage of the USB_DECLARE_DRIVER_CLASS and |  mbalmer | 2007-06-14 | 1 | -2/+17 |
* | Remove the definition and use of the device_ptr_t which was a struct device *. |  mbalmer | 2007-06-12 | 1 | -2/+2 |