Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c4a90fd authored by Thiago Farina's avatar Thiago Farina Committed by Jeff Garzik
Browse files

sata_mv: Clean up hard coded array size calculation.



Use ARRAY_SIZE macro of kernel api instead.

Signed-off-by: default avatarThiago Farina <tfransosi@gmail.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 7095e3eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2217,7 +2217,7 @@ static unsigned int mv_qc_issue_fis(struct ata_queued_cmd *qc)
	int err = 0;

	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)
		return err;