virtio_blk: Fix spelling mistake: "advertisted" -> "advertised"

There is a spelling mistake in a dev_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20211025102240.22801-1-colin.i.king@gmail.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Acked-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
Colin Ian King 2021-10-25 11:22:40 +01:00 committed by Michael S. Tsirkin
parent 6ae6ff6f6e
commit 63b4ffa4fa

View File

@ -572,7 +572,7 @@ static int init_vq(struct virtio_blk *vblk)
if (err)
num_vqs = 1;
if (!err && !num_vqs) {
dev_err(&vdev->dev, "MQ advertisted but zero queues reported\n");
dev_err(&vdev->dev, "MQ advertised but zero queues reported\n");
return -EINVAL;
}