From: Alok Tiwari Date: Thu, 29 May 2025 08:42:39 +0000 (-0700) Subject: virtio: Fix typo in register_virtio_device() doc comment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0883c1af14c5d351201ace00b1a46df2b157329;p=thirdparty%2Fkernel%2Flinux.git 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 --- diff --git a/drivers/virtio/virtio.c b/drivers/virtio/virtio.c index c441c8cc71ef..b25eadf59477 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) {