diff options
author | Marc Carino <marc.ceeeee@gmail.com> | 2013-08-25 02:22:48 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2013-08-25 09:39:11 -0400 |
commit | 8be5ad9acb7c11b9d717bcdbe3d6de0dab081a39 (patch) | |
tree | 528bb497df99021c96fef990ccd4b3ae1b248e28 /include/linux/libata.h | |
parent | f1bc1e4c44b1b78fe34431936c60759b5aad5e3f (diff) |
libata: Populate host-to-device FIS "auxiliary" field
SATA 3.1 added an "auxiliary" field to the host-to-device FIS.
Populate the host-to-device FIS with the new field via the
taskfile struct.
Signed-off-by: Marc Carino <marc.ceeeee@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 3198617905e1..9b6ba196179f 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -555,6 +555,10 @@ struct ata_taskfile { | |||
555 | u8 device; | 555 | u8 device; |
556 | 556 | ||
557 | u8 command; /* IO operation */ | 557 | u8 command; /* IO operation */ |
558 | |||
559 | u32 auxiliary; /* auxiliary field */ | ||
560 | /* from SATA 3.1 and */ | ||
561 | /* ATA-8 ACS-3 */ | ||
558 | }; | 562 | }; |
559 | 563 | ||
560 | #ifdef CONFIG_ATA_SFF | 564 | #ifdef CONFIG_ATA_SFF |