[PATCH] libata: Marvell endian fix
Jeff found an endian bug in the Marvell driver (thanks!). Here's the fix for it. Signed-off-by: Brett Russ <russb@emc.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
323cb3ce6e
commit
7e6c120859
1 changed files with 3 additions and 2 deletions
|
@ -35,7 +35,7 @@
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
|
||||||
#define DRV_NAME "sata_mv"
|
#define DRV_NAME "sata_mv"
|
||||||
#define DRV_VERSION "0.24"
|
#define DRV_VERSION "0.25"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
/* BAR's are enumerated in terms of pci_resource_start() terms */
|
/* BAR's are enumerated in terms of pci_resource_start() terms */
|
||||||
|
@ -800,7 +800,8 @@ static void mv_fill_sg(struct ata_queued_cmd *qc)
|
||||||
pp->sg_tbl[i].flags_size = cpu_to_le32(sg_len);
|
pp->sg_tbl[i].flags_size = cpu_to_le32(sg_len);
|
||||||
}
|
}
|
||||||
if (0 < qc->n_elem) {
|
if (0 < qc->n_elem) {
|
||||||
pp->sg_tbl[qc->n_elem - 1].flags_size |= EPRD_FLAG_END_OF_TBL;
|
pp->sg_tbl[qc->n_elem - 1].flags_size |=
|
||||||
|
cpu_to_le32(EPRD_FLAG_END_OF_TBL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue