]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
dmaengine: mmp: fix Wvoid-pointer-to-enum-cast warning
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Thu, 10 Aug 2023 10:00:00 +0000 (12:00 +0200)
committerVinod Koul <vkoul@kernel.org>
Wed, 4 Oct 2023 13:54:57 +0000 (19:24 +0530)
'type' is an enum, thus cast of pointer on 64-bit compile test with W=1
causes:

  mmp_tdma.c:649:10: error: cast to smaller integer type 'enum mmp_tdma_type' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230810100000.123515-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/mmp_tdma.c

index f039e07181f7a9067dcf65b7e2846374f88db020..fbde356881214676826b32418bc7349c90be9d73 100644 (file)
@@ -644,7 +644,7 @@ static int mmp_tdma_probe(struct platform_device *pdev)
 
        of_id = of_match_device(mmp_tdma_dt_ids, &pdev->dev);
        if (of_id)
-               type = (enum mmp_tdma_type) of_id->data;
+               type = (uintptr_t) of_id->data;
        else
                type = platform_get_device_id(pdev)->driver_data;