aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ips
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix pointer/int warnings so this compiles on amd64. The driver wantsPeter Wemm2003-06-273-4/+4
| | | | | | | | | | to store an int in the bio->bio_driver1 (a void *). It is big enough, but you have to match the int sizes first before doing the cast. Glanced at by: scottl Notes: svn path=/head/; revision=116931
* - Zero the buffers used to hold configuration data from the card. Not doingScott Long2003-06-264-15/+38
| | | | | | | | | | | | | so can leave stale data in the buffer and confuse the driver. - enable the ability to set the 'disable' hint for the driver to keep it from attaching. i.e. 'hw.ips.0.disable=1' will prevent the driver from attaching. - Only detach if attach suceeded. Submitted by: mjacob Notes: svn path=/head/; revision=116852
* Fix indentationPoul-Henning Kamp2003-05-311-12/+13
| | | | | | | Found by: FlexeLint Notes: svn path=/head/; revision=115554
* Add the 'ips' driver for the IBM (now Adaptec) ServeRAID controllerScott Long2003-05-118-0/+2364
series. This driver was generously developed and released by David Jeffreys and Adaptec. I've updated it to work with 5.x and fixed a few bugs. MFC After: 1 week Notes: svn path=/head/; revision=114902