From 82a9582dd7617902f22c2231fa5ecb77e3d75dd0 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Fri, 1 Dec 2023 11:17:22 +0100 Subject: [PATCH] qemu-usb: minor documentation fixes --- repos/libports/include/qemu/usb.h | 2 +- repos/libports/src/lib/qemu-usb/README | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/libports/include/qemu/usb.h b/repos/libports/include/qemu/usb.h index 70cf0e46fe..065d59f969 100644 --- a/repos/libports/include/qemu/usb.h +++ b/repos/libports/include/qemu/usb.h @@ -115,7 +115,7 @@ namespace Qemu { * * \param tq Timer_queue instance provided by the user of the library * \param pd Pci_device instance provided by the user of the library - * \param sr Signal_receiver used by the library to install signals + * \param ep Entrypoint used by the library to install signals * * \return Pointer to Controller object that is used to access the xHCI device state */ diff --git a/repos/libports/src/lib/qemu-usb/README b/repos/libports/src/lib/qemu-usb/README index a160a7d69a..37ef62c080 100644 --- a/repos/libports/src/lib/qemu-usb/README +++ b/repos/libports/src/lib/qemu-usb/README @@ -11,7 +11,7 @@ that handles access to the PCI bus (raise interrupts, (un)map DMA memory) within the VMM device model. To use this library the user calls 'Qemu::usb_init' and passes -pointers to the back end objects. In addition, a Signal_receiver +pointers to the back end objects. In addition, an 'Entrypoint' reference has also to be handed over. It will receive all signals required by this library.