USB: isp1362: better 64bit printf warning fixes

Some hosts that treat the return value of sizeof differently from unsigned
long might still hit warnings. So use %zu for sizeof() values. This is a
better version of the previous commit b0a9cf297e58721933.

Signed-off-by: Lothar Wassmann <LW@KARO-electronics.de>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by Lothar Wassmann and committed by Greg Kroah-Hartman 96b85179 10d2cdb6

+2 -2
+2 -2
drivers/usb/host/isp1362-hcd.c
··· 2270 2270 dev_info(hcd->self.controller, "ISP1362 Memory usage:\n"); 2271 2271 dev_info(hcd->self.controller, " ISTL: 2 * %4d: %4d @ $%04x:$%04x\n", 2272 2272 istl_size / 2, istl_size, 0, istl_size / 2); 2273 - dev_info(hcd->self.controller, " INTL: %4d * (%3lu+8): %4d @ $%04x\n", 2273 + dev_info(hcd->self.controller, " INTL: %4d * (%3zu+8): %4d @ $%04x\n", 2274 2274 ISP1362_INTL_BUFFERS, intl_blksize - PTD_HEADER_SIZE, 2275 2275 intl_size, istl_size); 2276 - dev_info(hcd->self.controller, " ATL : %4d * (%3lu+8): %4d @ $%04x\n", 2276 + dev_info(hcd->self.controller, " ATL : %4d * (%3zu+8): %4d @ $%04x\n", 2277 2277 atl_buffers, atl_blksize - PTD_HEADER_SIZE, 2278 2278 atl_size, istl_size + intl_size); 2279 2279 dev_info(hcd->self.controller, " USED/FREE: %4d %4d\n", total,