diff options
author | Christoph Hellwig <hch@lst.de> | 2017-06-04 14:42:24 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-06-05 15:29:22 -0400 |
commit | 818831c8b22f75353f59a63a484e20736c0567c9 (patch) | |
tree | 7b76516e71dcaa9a827475017827201a1b35b506 /include/linux/libata.h | |
parent | a0fd2454a36ffab2ce39b3a91c1385a5f98e63f0 (diff) |
libata: implement SECURITY PROTOCOL IN/OUT
This allows us to use the generic OPAL code with ATA devices.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 9e6633235ad7..55de3da58b1c 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -156,6 +156,7 @@ enum { ATA_DFLAG_ACPI_PENDING = (1 << 5), /* ACPI resume action pending */ ATA_DFLAG_ACPI_FAILED = (1 << 6), /* ACPI on devcfg has failed */ ATA_DFLAG_AN = (1 << 7), /* AN configured */ + ATA_DFLAG_TRUSTED = (1 << 8), /* device supports trusted send/recv */ ATA_DFLAG_DMADIR = (1 << 10), /* device requires DMADIR */ ATA_DFLAG_CFG_MASK = (1 << 12) - 1, |