diff mbox series

[4.14,164/166] ata: define AC_ERR_OK

Message ID 20200929105943.386146288@linuxfoundation.org
State Not Applicable
Delegated to: David Miller
Headers show
Series None | expand

Commit Message

Greg Kroah-Hartman Sept. 29, 2020, 11:01 a.m. UTC
From: Jiri Slaby <jslaby@suse.cz>

commit 25937580a5065d6fbd92d9c8ebd47145ad80052e upstream.

Since we will return enum ata_completion_errors from qc_prep in the next
patch, let's define AC_ERR_OK to mark the OK status.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: linux-ide@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 include/linux/libata.h |    1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -504,6 +504,7 @@  enum hsm_task_states {
 };
 
 enum ata_completion_errors {
+	AC_ERR_OK		= 0,	    /* no error */
 	AC_ERR_DEV		= (1 << 0), /* device reported error */
 	AC_ERR_HSM		= (1 << 1), /* host state machine violation */
 	AC_ERR_TIMEOUT		= (1 << 2), /* timeout */