sata_mv: Clean up hard coded array size calculation.

Use ARRAY_SIZE macro of kernel api instead.

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
Thiago Farina 2009-11-08 14:30:57 -05:00 committed by Jeff Garzik
parent 7095e3eb49
commit 4c4a90fd2b

View file

@ -2217,7 +2217,7 @@ static unsigned int mv_qc_issue_fis(struct ata_queued_cmd *qc)
int err = 0; int err = 0;
ata_tf_to_fis(&qc->tf, link->pmp, 1, (void *)fis); ata_tf_to_fis(&qc->tf, link->pmp, 1, (void *)fis);
err = mv_send_fis(ap, fis, sizeof(fis) / sizeof(fis[0])); err = mv_send_fis(ap, fis, ARRAY_SIZE(fis));
if (err) if (err)
return err; return err;