aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
Commit message (Expand)AuthorAgeFilesLines
* Replace {disable,enable}_intr() with critical_{enter,exit}().Matthew N. Dodd2002-11-102-6/+6
* Fix instances of macros with improperly parenthasized arguments.Alfred Perlstein2002-11-098-50/+52
* Fix some sizeof(int) != sizeof(void *) warnings.John Baldwin2002-11-081-2/+2
* - Move opt_fb.h earlier so it covers included headers.John Baldwin2002-11-081-6/+5
* Move include of opt_fb.h earlier so that FB_INSTALL_CDEV is defined inJohn Baldwin2002-11-081-2/+2
* Fix printf warnings with %j and uintmax_t.John Baldwin2002-11-081-2/+3
* Use critical_enter/exit instead of disable/enable_intr to make thisJohn Baldwin2002-11-081-18/+18
* - Change the ATM stack functions to use intptr_t instead of int for opaqueJohn Baldwin2002-11-082-4/+4
* - Set RS (Report Status) bit on all descriptors of a packet instead of just t...Prafulla Deuskar2002-11-086-515/+763
* Use %z to print a size_t value.John Baldwin2002-11-081-1/+1
* Reviewed by: n_hibmaMichael Reifenberger2002-11-081-8/+16
* - Use %p to print pointers instead of casting pointers to an int and usingJohn Baldwin2002-11-071-6/+6
* Use [u]intmax_t and %j instead of long long and %ll to better fix warningsJohn Baldwin2002-11-074-7/+11
* Make 'rclk' a uintptr_t to quiet warnings.John Baldwin2002-11-071-3/+3
* Use %z and %j to quiet warnings.John Baldwin2002-11-071-6/+7
* Cast a pointer to a uintptr_t instead of a u_int.John Baldwin2002-11-071-1/+1
* Fix the rest of the 64-bit warnings for the sr(4) driver.John Baldwin2002-11-071-4/+4
* Explicitly cast daddr_t's to long long's when printing them since daddr_tJohn Baldwin2002-11-074-13/+13
* Cast a ptrdiff_t value to an int to quiet a warning since we don't supportJohn Baldwin2002-11-071-1/+2
* Quiet some DIAGNOSTIC printf warnings with band-aid casts.John Baldwin2002-11-071-4/+5
* Print pointers with %p instead of casting them to an unsigned int andJohn Baldwin2002-11-071-2/+2
* Fix lots of places that assume sizeof(int) == sizeof(void *). Most ofJohn Baldwin2002-11-071-18/+18
* Cast a pointer to uintptr_t instead ot u_int.John Baldwin2002-11-071-1/+1
* d_read_t functions return an int, not a ssize_t. (Considering the factJohn Baldwin2002-11-071-1/+1
* Warning fixes for sizeof(int) != sizeof(void *).John Baldwin2002-11-071-6/+6
* - Make 'irq' intptr_t instead of uintptr_t so it handles a value of -1John Baldwin2002-11-071-2/+2
* Properly fix the occassional random crash issue that revision 1.142Ian Dowse2002-11-072-31/+24
* - Fix printf warnings on 64bit plathome.Hidetoshi Shimokawa2002-11-073-7/+17
* Adjust some casts to quiet warnings.John Baldwin2002-11-065-9/+9
* Use long long to print out a bus_addr_t again.John Baldwin2002-11-061-2/+2
* Cast a bus_addr_t to a long long to make printf happy.John Baldwin2002-11-061-1/+1
* Packed structures are defined differently in older gcc's, like the oneJosef Karthauser2002-11-062-4/+4
* Use bus_addr_t instead of u_int32_t in functions to convert betweenJohn Baldwin2002-11-061-3/+3
* Use the explicit value 0xffffffff instead of assuming that is what ~0ULJohn Baldwin2002-11-061-1/+1
* Add some band-aid casts to quiet warnings. This driver still assumesJohn Baldwin2002-11-061-1/+1
* More int != pointer stuff.John Baldwin2002-11-061-2/+3
* Repeat after me: sizeof(int) != sizeof(void *).John Baldwin2002-11-061-1/+1
* Use some long long casts to quiet warnings in debug printf's on alpha.John Baldwin2002-11-062-2/+3
* Use a bandaid to fix a warning. However, this driver is very, very farJohn Baldwin2002-11-061-1/+1
* Fix warning where sizeof(size_t) != sizeof(int).John Baldwin2002-11-061-1/+1
* Add support for DEVICE_POLLING.Hidetoshi Shimokawa2002-11-062-0/+79
* Minor clean up on cdb handling.Hidetoshi Shimokawa2002-11-061-8/+7
* There's no need for a locally defined usb_proc_t when we've gotJosef Karthauser2002-11-061-10/+3
* Whitespace, style fixes.Matthew N. Dodd2002-11-063-437/+374
* - Let the PCI code try to route interrupt in -currentHidetoshi Shimokawa2002-11-061-1/+5
* Remove undefined variable.Matthew N. Dodd2002-11-051-1/+1
* Style/whitespace changes.Matthew N. Dodd2002-11-051-82/+78
* Fix for GEOM.Matthew N. Dodd2002-11-052-56/+11
* - Convert to newbus, bus_space etc.Matthew N. Dodd2002-11-054-391/+587
* Sony CXD3222 OHCI i.LINK chips needs more DELAY before starting SCLKHidetoshi Shimokawa2002-11-051-1/+1