Skip to content

Commit cced4c0

Browse files
Colin Ian Kingmartinkpetersen
authored andcommitted
scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported"
There are a couple of spelling mistakes in pr_info and pr_err messages. Fix them. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent dd689ed commit cced4c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/scsi/virtio_scsi.c

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

@@ -392,7 +392,7 @@ static void virtscsi_handle_event(struct work_struct *work)
392392
virtscsi_handle_param_change(vscsi, event);
393393
break;
394394
default:
395-
pr_err("Unsupport virtio scsi event %x\n", event->event);
395+
pr_err("Unsupported virtio scsi event %x\n", event->event);
396396
}
397397
virtscsi_kick_event(vscsi, event_node);
398398
}

0 commit comments

Comments
 (0)