aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/if_cue.c
Commit message (Expand)AuthorAgeFilesLines
* More removing compatibility macros.Warner Losh2006-09-071-2/+2
* s/Static/static/gWarner Losh2006-09-061-53/+53
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-1/+1
* Add missing mtx_destroy() when if_alloc() fails.Ruslan Ermilov2005-09-161-1/+5
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-13/+13
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-101-12/+16
* Fix breakage in the previous commit caused by the last-minute change.Maxim Sobolev2005-03-251-3/+2
* Move Rx/Tx lists management routines into central location.Maxim Sobolev2005-03-251-124/+48
* Move xxx_newbuf() function, which was the same in all drivers into centralMaxim Sobolev2005-03-251-39/+5
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
* Mark USB ethernet devices as IFF_NEEDSGIANT, since the USB frameworkRobert Watson2004-08-111-1/+2
* MFp4: First batch of dev/usb/usbdevs.h -> usbdevs.h changes.Warner Losh2004-06-271-1/+1
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-9/+1
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Replace the static "qdat" structure with a per-instance softc fieldIan Dowse2004-05-231-5/+3
* Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd2004-03-141-5/+0
* Don't use caddr_t in mchash(). Also use C99 spellings over BSD ones.David E. O'Brien2003-12-081-3/+3
* Remove duplicateJohan Karlsson2003-11-141-3/+0
* Despam the const poisoningWarner Losh2003-11-141-5/+5
* Try to create some sort of consistency in how the routings to find theDavid E. O'Brien2003-11-131-6/+8
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+1
* Const poison the crc calcuation routines so const data can be sent toWarner Losh2003-10-231-3/+3
* Make it easier to run this code on RELENG_4.Josef Karthauser2003-10-041-1/+25
* Use __FBSDID().David E. O'Brien2003-08-241-0/+3
* add missing machine/bus.h headers that are now necessary because of theJohn-Mark Gurney2003-07-161-0/+1
* WARNING: white space diffJohn-Mark Gurney2003-07-041-2/+2
* Fix indentation.Poul-Henning Kamp2003-05-311-2/+2
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-2/+3
* Use __FBSDID rather than rcsid[].David E. O'Brien2003-04-031-7/+3
* - Use if_broadcastaddr from struct ifnet rather than relying onMatthew N. Dodd2003-03-211-1/+1
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2
* network interface driver changes:Sam Leffler2002-11-141-10/+4
* We not long need to use USBD_NO_TSLEEP.Josef Karthauser2002-04-071-15/+7
* MFNetBSD: if_aue.c (1.26), if_auereg.h (1.6), if_cue.c (1.10),Josef Karthauser2002-04-071-2/+3
* Use the UE_GET_XFERTYPE macro.Josef Karthauser2002-04-061-3/+3
* Rename csr_{read,write}_* to cue_csr_{read,write}_*.Josef Karthauser2002-04-061-21/+21
* Rename foo_gone to foo_dying, in keeping with the rest of the usb code.Josef Karthauser2002-04-061-9/+9
* Replace device_t with device_ptr_t.Josef Karthauser2002-04-061-6/+6
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-2/+2
* Use ANSI prototypes and declarations.Josef Karthauser2002-04-021-99/+77
* Remove __P.Alfred Perlstein2002-03-201-33/+32
* Make these depend on the usb module so they can use its symbols if theyPeter Wemm2001-08-221-1/+1
* Since -CURRENT requires module dependencies to actually be correct forBrian Feldman2001-03-291-0/+1
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedPoul-Henning Kamp2001-02-061-1/+1
* Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead ofPoul-Henning Kamp2001-02-031-2/+1
* Implement MTX_RECURSE flag for mtx_init().Bosko Milekic2001-01-191-1/+2
* Convert the USB ethernet drivers to use mutexes. Also convertBill Paul2000-10-241-61/+66