From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kmAhc-00030L-97 for barebox@lists.infradead.org; Mon, 07 Dec 2020 07:12:57 +0000 Date: Mon, 7 Dec 2020 08:12:54 +0100 Message-ID: <20201207071254.GC3977@pengutronix.de> References: <20201201131758.18769-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20201201131758.18769-1-a.fatoum@pengutronix.de> From: Sascha Hauer List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH] usb: host: ehci: fix mismatch in format string To: Ahmad Fatoum Cc: barebox@lists.infradead.org On Tue, Dec 01, 2020 at 02:17:59PM +0100, Ahmad Fatoum wrote: > sz is of type size_t. Use the appropriate format string specifier for > print it. > > Signed-off-by: Ahmad Fatoum > --- > drivers/usb/host/ehci-hcd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks Sascha > > diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c > index 38999927c5a8..287849102d68 100644 > --- a/drivers/usb/host/ehci-hcd.c > +++ b/drivers/usb/host/ehci-hcd.c > @@ -240,7 +240,7 @@ static int ehci_td_buffer(struct qTD *td, dma_addr_t addr, size_t sz) > } > > if (idx == buffer_count) { > - pr_debug("out of buffer pointers (%u bytes left)\n", sz); > + pr_debug("out of buffer pointers (%zu bytes left)\n", sz); > return -ENOMEM; > } > > -- > 2.29.2 > > > _______________________________________________ > barebox mailing list > barebox@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/barebox > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox