Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs: driver-api: virtio: slightly reword virtqueues allocation paragraph

"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>

authored by

Bagas Sanjaya and committed by
Michael S. Tsirkin
ae8d2247 fb25d456

+4 -4
+4 -4
Documentation/driver-api/virtio/virtio.rst
··· 123 123 for a driver in the bus that can handle the device and call that 124 124 driver's ``probe`` method. 125 125 126 - It's at this stage that the virtqueues will be allocated and configured 127 - by calling the appropriate ``virtio_find`` helper function, such as 128 - virtio_find_single_vq() or virtio_find_vqs(), which will end up 129 - calling a transport-specific ``find_vqs`` method. 126 + At this point, the virtqueues will be allocated and configured by 127 + calling the appropriate ``virtio_find`` helper function, such as 128 + virtio_find_single_vq() or virtio_find_vqs(), which will end up calling 129 + a transport-specific ``find_vqs`` method. 130 130 131 131 132 132 References