diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-06-03 19:04:14 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-06-13 09:50:57 +0800 |
commit | 9fddf6c7dd9dca493969d4ebd5e5fc2b2e21be9c (patch) | |
tree | e62d84df7fcac5f59127146590c41fa6442302e1 /drivers/usb/host | |
parent | 341dda352dce7eeaae27db6695d05e3cc1a91dc7 (diff) | |
download | u-boot-9fddf6c7dd9dca493969d4ebd5e5fc2b2e21be9c.tar.gz u-boot-9fddf6c7dd9dca493969d4ebd5e5fc2b2e21be9c.tar.bz2 u-boot-9fddf6c7dd9dca493969d4ebd5e5fc2b2e21be9c.zip |
usb: xhci-pci: Fix compiler warning
This fixes the following compiler warning:
"warning: cast from pointer to integer of different size
[-Wpointer-to-int-cast]"
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/xhci-pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index e8fd6bf6ae..b995aef997 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -23,9 +23,8 @@ static void xhci_pci_init(struct udevice *dev, struct xhci_hccr **ret_hccr, hcor = (struct xhci_hcor *)((uintptr_t) hccr + HC_LENGTH(xhci_readl(&hccr->cr_capbase))); - debug("XHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n", - (u32)hccr, (u32)hcor, - (u32)HC_LENGTH(xhci_readl(&hccr->cr_capbase))); + debug("XHCI-PCI init hccr %p and hcor %p hc_length %d\n", + hccr, hcor, (u32)HC_LENGTH(xhci_readl(&hccr->cr_capbase))); *ret_hccr = hccr; *ret_hcor = hcor; |