Skip to content

Commit 57c7ca3

Browse files
Colin Ian Kinggregkh
authored andcommitted
scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported"
[ Upstream commit cced4c0 ] There are a couple of spelling mistakes in pr_info and pr_err messages. Fix them. Link: https://lore.kernel.org/r/20210924230330.143785-1-colin.king@canonical.com Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent d993d1e commit 57c7ca3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/scsi/virtio_scsi.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ static void virtscsi_handle_transport_reset(struct virtio_scsi *vscsi,
302302
}
303303
break;
304304
default:
305-
pr_info("Unsupport virtio scsi event reason %x\n", event->reason);
305+
pr_info("Unsupported virtio scsi event reason %x\n", event->reason);
306306
}
307307
}
308308

@@ -394,7 +394,7 @@ static void virtscsi_handle_event(struct work_struct *work)
394394
virtscsi_handle_param_change(vscsi, event);
395395
break;
396396
default:
397-
pr_err("Unsupport virtio scsi event %x\n", event->event);
397+
pr_err("Unsupported virtio scsi event %x\n", event->event);
398398
}
399399
virtscsi_kick_event(vscsi, event_node);
400400
}

0 commit comments

Comments
 (0)