s390/tape: Fix spelling mistake in function name tape_3590_erp_succeded
authorColin Ian King <colin.king@canonical.com>
Mon, 18 Jan 2021 11:32:22 +0000 (11:32 +0000)
committerVasily Gorbik <gor@linux.ibm.com>
Wed, 27 Jan 2021 12:00:47 +0000 (13:00 +0100)
Rename tape_3590_erp_succeded to tape_3590_erp_succeeded to fix a
spelling mistake in the function name.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Link: https://lore.kernel.org/r/20210118113222.71708-1-colin.king@canonical.com
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
drivers/s390/char/tape_3590.c

index ecf8c50..0d484fe 100644 (file)
@@ -761,7 +761,7 @@ tape_3590_done(struct tape_device *device, struct tape_request *request)
  * This function is called, when error recovery was successful
  */
 static inline int
-tape_3590_erp_succeded(struct tape_device *device, struct tape_request *request)
+tape_3590_erp_succeeded(struct tape_device *device, struct tape_request *request)
 {
        DBF_EVENT(3, "Error Recovery successful for %s\n",
                  tape_op_verbose[request->op]);
@@ -831,7 +831,7 @@ tape_3590_erp_basic(struct tape_device *device, struct tape_request *request,
        case SENSE_BRA_PER:
                return tape_3590_erp_failed(device, request, irb, rc);
        case SENSE_BRA_CONT:
-               return tape_3590_erp_succeded(device, request);
+               return tape_3590_erp_succeeded(device, request);
        case SENSE_BRA_RE:
                return tape_3590_erp_retry(device, request, irb);
        case SENSE_BRA_DRE: