On Thu, 10 Jan 2013, Felipe Balbi wrote: > Fix the following compile warning: > > In file included from drivers/usb/host/ohci-hcd.c:1170:0: > drivers/usb/host/ohci-tmio.c: In function 'tmio_start_hc': > drivers/usb/host/ohci-tmio.c:130:2: warning: format '%llx' expects argument of type 'long long unsigned int', but argument 4 has type 'resource_size_t' [-Wformat] > > seen on ARM 32-bit builds. > > Signed-off-by: Felipe Balbi <balbi@xxxxxx> > --- > drivers/usb/host/ohci-tmio.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/usb/host/ohci-tmio.c b/drivers/usb/host/ohci-tmio.c > index d370245..5e3a6de 100644 > --- a/drivers/usb/host/ohci-tmio.c > +++ b/drivers/usb/host/ohci-tmio.c > @@ -128,7 +128,8 @@ static void tmio_start_hc(struct platform_device *dev) > tmio_iowrite8(2, tmio->ccr + CCR_INTC); > > dev_info(&dev->dev, "revision %d @ 0x%08llx, irq %d\n", > - tmio_ioread8(tmio->ccr + CCR_REVID), hcd->rsrc_start, hcd->irq); > + tmio_ioread8(tmio->ccr + CCR_REVID), > + (u64) hcd->rsrc_start, hcd->irq); > } Acked-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html