From: Michael S. Tsirkin Date: Thu, 13 Nov 2025 09:34:31 +0000 (-0500) Subject: virtio: fix typo in virtio_device_ready() comment X-Git-Tag: v6.18.2~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=201ca193b4928dba9da0d10b1c356b7f9172249e;p=thirdparty%2Fkernel%2Fstable.git virtio: fix typo in virtio_device_ready() comment [ Upstream commit 361173f95ae4b726ebbbf0bd594274f5576c4abc ] "coherenct" -> "coherent" Fixes: 8b4ec69d7e09 ("virtio: harden vring IRQ") Message-Id: Acked-by: Jason Wang Signed-off-by: Michael S. Tsirkin Signed-off-by: Sasha Levin --- diff --git a/include/linux/virtio_config.h b/include/linux/virtio_config.h index 16001e9f9b391..1ea5baa62141f 100644 --- a/include/linux/virtio_config.h +++ b/include/linux/virtio_config.h @@ -362,7 +362,7 @@ void virtio_device_ready(struct virtio_device *dev) * specific set_status() method. * * A well behaved device will only notify a virtqueue after - * DRIVER_OK, this means the device should "see" the coherenct + * DRIVER_OK, this means the device should "see" the coherent * memory write that set vq->broken as false which is done by * the driver when it sees DRIVER_OK, then the following * driver's vring_interrupt() will see vq->broken as false so