aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pbio
Commit message (Collapse)AuthorAgeFilesLines
* Replace all calls to minor() with dev2unit().Ed Schouten2008-09-271-2/+2
| | | | | | | | | | | | | | | | | | After I removed all the unit2minor()/minor2unit() calls from the kernel yesterday, I realised calling minor() everywhere is quite confusing. Character devices now only have the ability to store a unit number, not a minor number. Remove the confusion by using dev2unit() everywhere. This commit could also be considered as a bug fix. A lot of drivers call minor(), while they should actually be calling dev2unit(). In -CURRENT this isn't a problem, but it turns out we never had any problem reports related to that issue in the past. I suspect not many people connect more than 256 pieces of the same hardware. Reviewed by: kib Notes: svn path=/head/; revision=183397
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
| | | | | | | unnecessary. Notes: svn path=/head/; revision=158651
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-1/+0
| | | | | | | | | and amd64. The optimization is a trivial on recent machines. Reviewed by: -arch (imp, marcel, dfr) Notes: svn path=/head/; revision=146734
* Skip PNP probes. If there are isapnp or pnpbios instances of this driver,Warner Losh2005-02-111-0/+3
| | | | | | | | then we can support them later. This keeps the pbio probe from claiming lots of otherwise unused pnpbios devices on my laptop. Notes: svn path=/head/; revision=141680
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-062-2/+2
| | | | Notes: svn path=/head/; revision=139749
* Catch up with the header repo copy.David E. O'Brien2004-11-111-1/+1
| | | | Notes: svn path=/head/; revision=137585
* Fix conflicts I didn't fix before I committed my busspace changes.Warner Losh2004-10-111-4/+2
| | | | | | | Noticed by: ru@ (and likely tinderbox, I haven't checked) Notes: svn path=/head/; revision=136362
* Convert to newbus. (chances are we could now move this to dev/pbioWarner Losh2004-10-101-46/+61
| | | | | | | | | since I believe it is now MI, but that hasn't been done yet). Reviewed by: dds Notes: svn path=/head/; revision=136341
* style(9)David E. O'Brien2004-10-091-57/+51
| | | | Notes: svn path=/head/; revision=136305
* Port pbio to HEAD.Warner Losh2004-10-072-0/+509
OK'd by: dds Notes: svn path=/head/; revision=136230