summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/pdc_adma.c
Commit message (Collapse)AuthorAgeFilesLines
* [PATCH] libata: move err_mask to ata_queued_cmdAlbert Lee2005-12-061-6/+5Star
| | | | | | | | | | | | - remove err_mask from the parameter list of the complete functions - move err_mask to ata_queued_cmd - initialize qc->err_mask when needed - for each function call to ata_qc_complete(), replace the err_mask parameter with qc->err_mask. Signed-off-by: Albert Lee <albertcc@tw.ibm.com> =============== Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
* [libata] constify PCI ID table in several driversJeff Garzik2005-11-101-1/+1
|
* [libata] eliminate use of drivers/scsi/scsi.h compatibility header/definesJeff Garzik2005-11-071-2/+1Star
|
* Merge branch 'master'Jeff Garzik2005-10-311-7/+6Star
|\
| * [libata] use dev_printk() throughout driversJeff Garzik2005-10-301-7/+6Star
| | | | | | | | | | | | A few drivers were not following the standard meme of printing out their driver name and version at module load time; this is fixed as well.
* | Merge branch 'upstream'Jeff Garzik2005-10-301-5/+8
|\|
| * [libata] change ata_qc_complete() to take error mask as second argJeff Garzik2005-10-301-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The second argument to ata_qc_complete() was being used for two purposes: communicate the ATA Status register to the completion function, and indicate an error. On legacy PCI IDE hardware, the latter is often implicit in the former. On more modern hardware, the driver often completely emulated a Status register value, passing ATA_ERR as an indication that something went wrong. Now that previous code changes have eliminated the need to use drv_stat arg to communicate the ATA Status register value, we can convert it to a mask of possible error classes. This will lead to more flexible error handling in the future.
* | Merge branch 'master'Jeff Garzik2005-10-291-1/+1
|\|
| * [libata] ensure ->tf_read() hook reads Status and Error registersJeff Garzik2005-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | We want ->tf_read() to get a complete snapshot of all taskfile registers, without requiring the callers to manually call ata_chk_status() and ata_chk_err() themselves. This also fixes a minor bug in sata_vsc where the lower bits of the feature register were incorrectly placed in the HOB (high order bits) portion of struct ata_taskfile.
* | Merge branch 'upstream'Jeff Garzik2005-10-291-13/+13
|\|
| * [libata pdc_adma] minor fixes and cleanupsJeff Garzik2005-10-281-13/+13
| | | | | | | | | | | | | | | | Changes mostly from Mark Lord. - fix bugs in probe-time error handling - only complete qc if not NULL - check port-level polling flags
* | Merge branch 'master'Jeff Garzik2005-10-281-1/+1
|\|
| * libata: const-ification bombing runJeff Garzik2005-10-221-1/+1
| | | | | | | | | | | | | | Enforce access rules where appropriate. If the compiler is smart enough, this may buy us an optimization or two as a side effect.
* | libata: add ata_sg_is_last() helper, use it in several driversJeff Garzik2005-10-191-4/+4
|/
* [libata pdc_adma] license update, minor cleanupJeff Garzik2005-10-111-16/+18
| | | | | | | from me: change from OSL+GPL to GPL (with approval) from Mark: Gets rid of an unneeded control bit, slightly increasing throughput.
* libata: add new driver pdc_adma for PDC ADMA ATA cardsMark Lord2005-10-101-0/+737