diff options
| author | Tom Rini <[email protected]> | 2021-11-18 20:18:34 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-11-18 20:18:34 -0500 |
| commit | f9bab982ae9e459b4e64c8a4ca8569aac32bb3bf (patch) | |
| tree | fc620a657dddb32ca18c1240a485b1c6a91b091a | |
| parent | 8e2a782af3c1ec80b7cff05942e743ee80ab22f0 (diff) | |
Revert "nvme: Enable FUA"
Unaddressed review comments.
This reverts commit b6bfb8971dd039a60e1cff1895ab9be8be0915b3.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | drivers/nvme/nvme.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/nvme/nvme.c b/drivers/nvme/nvme.c index 9623c896a15..3c529a2fce2 100644 --- a/drivers/nvme/nvme.c +++ b/drivers/nvme/nvme.c @@ -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; |
