From: Greg Kroah-Hartman Date: Thu, 30 Apr 2009 02:12:44 +0000 (-0700) Subject: USB: xhci: fix some compiler warnings in xhci.h X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~25985^2~15 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=045f123d9c83b9a18c9d43a9afbf52bf0799640d;p=mirror_ubuntu-artful-kernel.git USB: xhci: fix some compiler warnings in xhci.h This fixes the warning: drivers/usb/host/xhci.h:1083: warning: passing argument 1 of ‘xhci_to_hcd’ discards qualifiers from pointer target type drivers/usb/host/xhci.h:1083: warning: passing argument 1 of ‘xhci_to_hcd’ discards qualifiers from pointer target type Reported-by: Stephen Rothwell Cc: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index e57a609e381d..13c9166e758a 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -1068,12 +1068,13 @@ static inline unsigned int xhci_readl(const struct xhci_hcd *xhci, { return readl(regs); } -static inline void xhci_writel(const struct xhci_hcd *xhci, +static inline void xhci_writel(struct xhci_hcd *xhci, const unsigned int val, __u32 __iomem *regs) { if (!in_interrupt()) - xhci_dbg(xhci, "`MEM_WRITE_DWORD(3'b000, 32'h%0x, 32'h%0x, 4'hf);\n", - (unsigned int) regs, val); + xhci_dbg(xhci, + "`MEM_WRITE_DWORD(3'b000, 32'h%p, 32'h%0x, 4'hf);\n", + regs, val); writel(val, regs); }