Skip to content

Commit

Permalink
[PATCH] libata-dev: recognize WRITE_MULTI_FUA_EXT for r/w multiple
Browse files Browse the repository at this point in the history
Recognize ATA_CMD_WRITE_MULTI_FUA_EXT as r/w multiple commands.

Signed-off-by: Albert Lee <albertcc@tw.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Albert Lee authored and Jeff Garzik committed Mar 3, 2006
1 parent 801c63c commit c2956a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/linux/ata.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ static inline int is_multi_taskfile(struct ata_taskfile *tf)
return (tf->command == ATA_CMD_READ_MULTI) ||
(tf->command == ATA_CMD_WRITE_MULTI) ||
(tf->command == ATA_CMD_READ_MULTI_EXT) ||
(tf->command == ATA_CMD_WRITE_MULTI_EXT);
(tf->command == ATA_CMD_WRITE_MULTI_EXT) ||
(tf->command == ATA_CMD_WRITE_MULTI_FUA_EXT);
}

static inline int ata_ok(u8 status)
Expand Down

0 comments on commit c2956a3

Please sign in to comment.