diff options
author | Tejun Heo <htejun@gmail.com> | 2006-02-11 05:11:13 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2006-02-11 17:51:57 -0500 |
commit | beec7dbc6ff003bbc94de62b3323519c878fb2ac (patch) | |
tree | f1cf8dee4f271356f2025a386eaa746aabafd1fe /drivers/scsi/sata_qstor.c | |
parent | a46314744d8fadb91451bf2e5d2fd949c4a752d8 (diff) |
[PATCH] libata: convert assert(xxx)'s in low-level drivers to WARN_ON(!xxx)'s
This patch converts all assert(xxx)'s in low-level drivers to
WARN_ON(!xxx)'s. After this patch, there is no in-kernel user of the
libata assert() macro.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/scsi/sata_qstor.c')
-rw-r--r-- | drivers/scsi/sata_qstor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/sata_qstor.c b/drivers/scsi/sata_qstor.c index 82c3df7048ea..955131b43206 100644 --- a/drivers/scsi/sata_qstor.c +++ b/drivers/scsi/sata_qstor.c | |||
@@ -277,8 +277,8 @@ static unsigned int qs_fill_sg(struct ata_queued_cmd *qc) | |||
277 | unsigned int nelem; | 277 | unsigned int nelem; |
278 | u8 *prd = pp->pkt + QS_CPB_BYTES; | 278 | u8 *prd = pp->pkt + QS_CPB_BYTES; |
279 | 279 | ||
280 | assert(qc->__sg != NULL); | 280 | WARN_ON(qc->__sg == NULL); |
281 | assert(qc->n_elem > 0); | 281 | WARN_ON(qc->n_elem == 0); |
282 | 282 | ||
283 | nelem = 0; | 283 | nelem = 0; |
284 | ata_for_each_sg(sg, qc) { | 284 | ata_for_each_sg(sg, qc) { |