Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove the definition and use of the USBDEVNAME macro. | 2007-06-10 | 1 | -25/+25 | ||
| | | | | | | | (This might look easy, but it was a big diff. Thanks to dlg and especially jsg for looking over it; we found at least four mistakes in the initial diff.) ok jsg. | |||||
* | Remove the definition and use of the USBDEV macro. It only created confusion | 2007-06-10 | 1 | -2/+2 | ||
| | | | | | | | | and the address of it's argument: USBDEV(sc->sc_dev) yields &sc->sc_dev. No binary changes. ok jsg. | |||||
* | Remove the definition and use of if_deactivate(). It was defined empty and | 2007-06-09 | 1 | -2/+1 | ||
| | | | | | | | | thus produced no code at all. No binary change. ok jsg. | |||||
* | Remove the "Static" declaration of many functions. It was defined to be empty | 2007-06-05 | 1 | -25/+25 | ||
| | | | | | | | and it was not consistently used. It was confusing as it suggested these functions were static, which they were not. discussed with dlg and jsg, ok jsg. | |||||
* | Farewell USB_{ATTACH,MATCH,DETACH}* you will not be missed. | 2007-05-27 | 1 | -19/+20 | ||
| | | | | ok deraadt@ krw@ mbalmer@ | |||||
* | Remove Ether_ifattach macro | 2007-05-21 | 1 | -2/+2 | ||
| | ||||||
* | laurence tratt says his cable mostly works with this | 2007-04-05 | 1 | -1/+2 | ||
| | | | | ok millert | |||||
* | force usb to send a zero length packet on the end of usb packets | 2007-02-23 | 1 | -2/+3 | ||
| | | | | which happen to be a multple of 64 bytes, to indicate end of packet. | |||||
* | iterate over the endpoints looking for appropriate interface descriptors to | 2007-01-22 | 1 | -5/+18 | ||
| | | | | | | | | use. this makes my adsl modem and ckeuthes cable modem work. idea from freebsd, via a diff from Krystian Baniak | |||||
* | another motorola device. | 2006-11-28 | 1 | -1/+2 | ||
| | ||||||
* | another cdce | 2006-11-16 | 1 | -1/+2 | ||
| | ||||||
* | In a drivers activate() entry point, if on DVACT_DEACTIVATE it does | 2006-06-23 | 1 | -2/+1 | ||
| | | | | | | something, then it MUST return zero on DVACT_ACTIVATE, not EOPNOTSUPP; this very popular bug has been cut and pasted a lot of times... ok deraadt@ mickey@ | |||||
* | Give up trying to communicate after 10 consecutive errors - the device | 2006-05-30 | 1 | -2/+7 | ||
| | | | | is most likely not coming back. | |||||
* | Add support for multicast packets. | 2006-05-27 | 1 | -1/+11 | ||
| | | | | ok dlg@ | |||||
* | allow bpf(4) to ignore packets based on their direction (inbound or | 2006-03-25 | 1 | -4/+3 | ||
| | | | | | outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@ | |||||
* | i wish all new hardware was this easy to support. acer labs usb2 data | 2006-03-24 | 1 | -1/+2 | ||
| | | | | link cable seems happy. thanks to sevan janiyan for the gear. | |||||
* | Fix kernel builds without bpfilter. Linking is still broken. | 2006-02-20 | 1 | -2/+2 | ||
| | | | | "Please commit this diff ASAP" brad@ | |||||
* | Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in | 2006-01-29 | 1 | -3/+3 | ||
| | | | | | | | | an interrupt context. From NetBSD ok dlg@ | |||||
* | add new device. | 2005-12-13 | 1 | -1/+2 | ||
| | ||||||
* | 2 more cdce devices | 2005-09-29 | 1 | -1/+3 | ||
| | ||||||
* | Don't keep the devinfo string on the stack, instead use malloc/free. | 2005-08-01 | 1 | -4/+5 | ||
| | | | | | | | | This should cure some rare stack overflows. From augustss NetBSD ok dlg@ pascoe@ | |||||
* | clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources. | 2005-07-02 | 1 | -3/+2 | ||
| | ||||||
* | align the buffer when it is allocated, rather than realign the data in it | 2005-01-27 | 1 | -8/+4 | ||
| | | | | | | | | | after we recieve it. the crc is little endian, so always transmit it in that byteorder. this lets me talk to a zaurus with a sparc64. ok drahn@ | |||||
* | Allow this to work on __STRICT_ALIGN archs, ok dhartmei@ | 2005-01-23 | 1 | -1/+8 | ||
| | ||||||
* | strncpy->strlcpy | 2004-11-10 | 1 | -2/+2 | ||
| | | | | ok henning@ | |||||
* | don't need to set ifp->if_mtu or ifp->if_output in each driver, | 2004-09-23 | 1 | -2/+1 | ||
| | | | | | | {ether,atm,fddi}_ifattach already does this. ok mcbride@ markus@ henning@ | |||||
* | spacing | 2004-07-21 | 1 | -7/+7 | ||
| | ||||||
* | use cdce_ prefix on crc32 function and table name to avoid conflicts, | 2004-07-21 | 1 | -6/+6 | ||
| | | | | suggested by mickey | |||||
* | add crc32(), ether_crc32_[b|l]e() doesn't work here. should make it work | 2004-07-21 | 1 | -2/+69 | ||
| | | | | with Zaurus. | |||||
* | Driver for USB CDC Ethernet devices (USB Host-to-Host), appearing as | 2004-07-20 | 1 | -0/+759 | ||
network interfaces, transporting Ethernet, supporting Sharp Zaurus and Prolific PL-2501 (external cable). Written by Craig Boston based on code from Bill Paul. ok deraadt@ |