Re: [PATCH] dma: ste_dma40: fix unneeded variable warning
From: Vinod Koul <vkoul@kernel.org>
Date: 2019-07-22 14:26:00
Also in:
dmaengine, lkml
From: Vinod Koul <vkoul@kernel.org>
Date: 2019-07-22 14:26:00
Also in:
dmaengine, lkml
On 12-07-19, 11:13, Arnd Bergmann wrote:
clang-9 points out that there are two variables that depending on the
configuration may only be used in an ARRAY_SIZE() expression but not
referenced:
drivers/dma/ste_dma40.c:145:12: error: variable 'd40_backup_regs' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration]
static u32 d40_backup_regs[] = {
^
drivers/dma/ste_dma40.c:214:12: error: variable 'd40_backup_regs_chan' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration]
static u32 d40_backup_regs_chan[] = {
Mark these __maybe_unused to shut up the warning.Applied, thanks -- ~Vinod _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel