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

Configure Feed

Select the types of activity you want to include in your feed.

usb: xhci: remove duplicate '0x' prefix

Prefix "0x" is automatically added by '%pad'.

Signed-off-by: Niklas Neronin <niklas.neronin@linux.intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://patch.msgid.link/20260402131342.2628648-25-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Niklas Neronin and committed by
Greg Kroah-Hartman
dad6711b 9a7ad750

+5 -5
+3 -3
drivers/usb/host/xhci-mem.c
··· 994 994 if (!dev->out_ctx) 995 995 goto fail; 996 996 997 - xhci_dbg(xhci, "Slot %d output ctx = 0x%pad (dma)\n", slot_id, &dev->out_ctx->dma); 997 + xhci_dbg(xhci, "Slot %d output ctx = %pad (dma)\n", slot_id, &dev->out_ctx->dma); 998 998 999 999 /* Allocate the (input) device context for address device command */ 1000 1000 dev->in_ctx = xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_INPUT, flags); 1001 1001 if (!dev->in_ctx) 1002 1002 goto fail; 1003 1003 1004 - xhci_dbg(xhci, "Slot %d input ctx = 0x%pad (dma)\n", slot_id, &dev->in_ctx->dma); 1004 + xhci_dbg(xhci, "Slot %d input ctx = %pad (dma)\n", slot_id, &dev->in_ctx->dma); 1005 1005 1006 1006 /* Initialize the cancellation and bandwidth list for each ep */ 1007 1007 for (i = 0; i < 31; i++) { ··· 2424 2424 2425 2425 xhci->dcbaa->dma = dma; 2426 2426 xhci_dbg_trace(xhci, trace_xhci_dbg_init, 2427 - "Device context base array address = 0x%pad (DMA), %p (virt)", 2427 + "Device context base array address = %pad (DMA), %p (virt)", 2428 2428 &xhci->dcbaa->dma, xhci->dcbaa); 2429 2429 2430 2430 /*
+2 -2
drivers/usb/host/xhci-ring.c
··· 755 755 } 756 756 757 757 if ((ep->ep_state & SET_DEQ_PENDING)) { 758 - xhci_warn(xhci, "Set TR Deq already pending, don't submit for 0x%pad\n", 758 + xhci_warn(xhci, "Set TR Deq already pending, don't submit for %pad\n", 759 759 &addr); 760 760 return -EBUSY; 761 761 } ··· 763 763 /* This function gets called from contexts where it cannot sleep */ 764 764 cmd = xhci_alloc_command(xhci, false, GFP_ATOMIC); 765 765 if (!cmd) { 766 - xhci_warn(xhci, "Can't alloc Set TR Deq cmd 0x%pad\n", &addr); 766 + xhci_warn(xhci, "Can't alloc Set TR Deq cmd %pad\n", &addr); 767 767 return -ENOMEM; 768 768 } 769 769