docs: driver-api: virtio: slightly reword virtqueues allocation paragraph
authorBagas Sanjaya <bagasdotme@gmail.com>
Tue, 20 Dec 2022 09:58:28 +0000 (16:58 +0700)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 21 Feb 2023 00:26:56 +0000 (19:26 -0500)
"It's at this stage that" means "At this point", so use the latter as it
is more effective.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Message-Id: <20221220095828.27588-3-bagasdotme@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Documentation/driver-api/virtio/virtio.rst

index 2e4ac95..88e2a9b 100644 (file)
@@ -123,10 +123,10 @@ When the device is registered to the virtio bus the kernel will look
 for a driver in the bus that can handle the device and call that
 driver's ``probe`` method.
 
-It's at this stage that the virtqueues will be allocated and configured
-by calling the appropriate ``virtio_find`` helper function, such as
-virtio_find_single_vq() or virtio_find_vqs(), which will end up
-calling a transport-specific ``find_vqs`` method.
+At this point, the virtqueues will be allocated and configured by
+calling the appropriate ``virtio_find`` helper function, such as
+virtio_find_single_vq() or virtio_find_vqs(), which will end up calling
+a transport-specific ``find_vqs`` method.
 
 
 References