mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
dmaengine: mmp: Fix again Wvoid-pointer-to-enum-cast warning
This was fixed and re-introduced. 'type' is an enum, thus cast of
pointer on 64-bit compile test with W=1 causes:
mmp_tdma.c:644:9: error: cast to smaller integer type 'enum mmp_tdma_type' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]
Fixes: a67ba97dfb ("dmaengine: Use device_get_match_data()")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20250525-dma-fixes-v1-5-89d06dac9bcb@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
committed by
Vinod Koul
parent
85a4ca2902
commit
a0b1589b62
@@ -641,7 +641,7 @@ static int mmp_tdma_probe(struct platform_device *pdev)
|
||||
int chan_num = TDMA_CHANNEL_NUM;
|
||||
struct gen_pool *pool = NULL;
|
||||
|
||||
type = (enum mmp_tdma_type)device_get_match_data(&pdev->dev);
|
||||
type = (kernel_ulong_t)device_get_match_data(&pdev->dev);
|
||||
|
||||
/* always have couple channels */
|
||||
tdev = devm_kzalloc(&pdev->dev, sizeof(*tdev), GFP_KERNEL);
|
||||
|
||||
Reference in New Issue
Block a user