1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-03 17:47:09 +01:00

Revert "nvme: Enable FUA"

Unaddressed review comments.

This reverts commit b6bfb8971d.

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini
2021-11-18 20:18:34 -05:00
parent 8e2a782af3
commit f9bab982ae

View File

@@ -762,10 +762,6 @@ static ulong nvme_blk_rw(struct udevice *udev, lbaint_t blknr,
c.rw.appmask = 0;
c.rw.metadata = 0;
/* Enable FUA for data integrity if vwc is enabled */
if (dev->vwc)
c.rw.control |= NVME_RW_FUA;
while (total_lbas) {
if (total_lbas < lbas) {
lbas = (u16)total_lbas;