From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8A0EE9443 for ; Sun, 13 Aug 2023 21:27:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 134D3C433C8; Sun, 13 Aug 2023 21:27:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1691962079; bh=0Lu6qzZ+BC+PCrDLqjYzvJejE4YoydfJKVIVVV377pI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=marC7v6Y6QJKsWJuJ9eMlFQ+kM/Fe6soSQr/cXxUSJjTKGZsMedyya7miCTIS4R2Y 4FS7dFC9RmMkCxUifCiGSN8MViLymSre5+CQctO0K8OqftcyTUV7KzHFkAQQgocmRK WPmee5t/fR3MDg4iltOaDwcYXuSHifOYXZboGg+c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Miquel Raynal , Vinod Koul Subject: [PATCH 6.4 106/206] dmaengine: xilinx: xdma: Fix typo Date: Sun, 13 Aug 2023 23:17:56 +0200 Message-ID: <20230813211728.088966221@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230813211724.969019629@linuxfoundation.org> References: <20230813211724.969019629@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Miquel Raynal commit 422dbc66b7702ae797326d5480c3c9b6467053da upstream. Probably a copy/paste error with the previous block, here we are actually managing C2H IRQs. Fixes: 17ce252266c7 ("dmaengine: xilinx: xdma: Add xilinx xdma driver") Signed-off-by: Miquel Raynal Link: https://lore.kernel.org/r/20230731101442.792514-3-miquel.raynal@bootlin.com Signed-off-by: Vinod Koul Signed-off-by: Greg Kroah-Hartman --- drivers/dma/xilinx/xdma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/dma/xilinx/xdma.c +++ b/drivers/dma/xilinx/xdma.c @@ -717,7 +717,7 @@ static int xdma_irq_init(struct xdma_dev ret = request_irq(irq, xdma_channel_isr, 0, "xdma-c2h-channel", &xdev->c2h_chans[j]); if (ret) { - xdma_err(xdev, "H2C channel%d request irq%d failed: %d", + xdma_err(xdev, "C2H channel%d request irq%d failed: %d", j, irq, ret); goto failed_init_c2h; }