From db8026e5eb079947ed15ca6be7a164b9b06f96cd Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 17 Jun 2021 16:25:45 +0200 Subject: usb: ehci: Fix unitialized variable buffer_dma is not really used unitialized, but the compiler doesn't realize this. Initialize it explicitly. Signed-off-by: Sascha Hauer Link: https://lore.barebox.org/20210617142545.7375-1-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer --- drivers/usb/host/ehci-hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers') diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 8c4da9fd12..6143c9f64e 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -305,7 +305,7 @@ ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer, struct usb_host *host = dev->host; struct ehci_host *ehci = to_ehci(host); const bool dir_in = usb_pipein(pipe); - dma_addr_t buffer_dma, req_dma; + dma_addr_t buffer_dma = DMA_ERROR_CODE, req_dma; struct QH *qh = &ehci->qh_list[1]; struct qTD *td; volatile struct qTD *vtd; -- cgit v1.2.3