From c0883c1af14c5d351201ace00b1a46df2b157329 Mon Sep 17 00:00:00 2001 From: Alok Tiwari Date: Thu, 29 May 2025 01:42:39 -0700 Subject: [PATCH] virtio: Fix typo in register_virtio_device() doc comment Corrected "suceess" to "success" in the function documentation for clarity. Signed-off-by: Alok Tiwari Acked-by: Jason Wang Message-Id: <20250529084350.3145699-1-alok.a.tiwari@oracle.com> Signed-off-by: Michael S. Tsirkin Reviewed-by: Xuan Zhuo --- drivers/virtio/virtio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/virtio/virtio.c b/drivers/virtio/virtio.c index c441c8cc71ef5..b25eadf59477f 100644 --- a/drivers/virtio/virtio.c +++ b/drivers/virtio/virtio.c @@ -506,7 +506,7 @@ out: * On error, the caller must call put_device on &@dev->dev (and not kfree), * as another code path may have obtained a reference to @dev. * - * Returns: 0 on suceess, -error on failure + * Returns: 0 on success, -error on failure */ int register_virtio_device(struct virtio_device *dev) { -- 2.47.2