This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit dd1b57577cf942573966adb16eb37d27c0a361d7 Author: Justin Hammond <[email protected]> AuthorDate: Sat Aug 8 12:21:04 2026 +0800 drivers/usbhost: Correct the xHCI controller name in a trace string. The control transfer trace entry names the controller "HXCI", so a log of an enumeration reads as though a different controller were involved. One neighbouring entry also spells the port "RHport" where the rest of the table spells it "RHPort". Text only. No trace identifier or argument changes. Assisted-by: Claude:claude-opus-5 Signed-off-by: Justin Hammond <[email protected]> --- drivers/usbhost/usbhost_xhci_trace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usbhost/usbhost_xhci_trace.c b/drivers/usbhost/usbhost_xhci_trace.c index ab2d4be5dbe..e7233c09bb2 100644 --- a/drivers/usbhost/usbhost_xhci_trace.c +++ b/drivers/usbhost/usbhost_xhci_trace.c @@ -87,11 +87,11 @@ static const struct xhci_usbhost_trace_s g_trace2[TRACE2_NSTRINGS] = TRENTRY(XHCI_VTRACE2_PORTSC_CONNECTED, "XHCI RHPort%d connected, pscwait: %d\n"), TRENTRY(XHCI_VTRACE2_PORTSC_DISCONND, - "XHCI RHport%d disconnected, pscwait: %d\n"), + "XHCI RHPort%d disconnected, pscwait: %d\n"), TRENTRY(XHCI_VTRACE2_MONWAKEUP, "XHCI Hub port%d connected: %d\n"), TRENTRY(XHCI_VTRACE2_CTRLINOUT, - "HXCI CTRLIN/OUT: RHPort%d req: %02x\n"), + "XHCI CTRLIN/OUT: RHPort%d req: %02x\n"), TRENTRY(XHCI_VTRACE2_EPALLOC, "XHCI EP%d allocated, type: %d\n"), };
