Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: marvell pxa-usb: fix Wvoid-pointer-to-enum-cast warning

'version' is an enum, thus cast of pointer on 64-bit compile test with
W=1 causes:

phy-pxa-usb.c:299:26: error: cast to smaller integer type 'enum pxa_usb_phy_version' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230810111958.205705-4-krzysztof.kozlowski@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Vinod Koul
7451eecf 2bc00b9b

+1 -1
+1 -1
drivers/phy/marvell/phy-pxa-usb.c
··· 296 296 297 297 of_id = of_match_node(pxa_usb_phy_of_match, dev->of_node); 298 298 if (of_id) 299 - pxa_usb_phy->version = (enum pxa_usb_phy_version)of_id->data; 299 + pxa_usb_phy->version = (uintptr_t)of_id->data; 300 300 else 301 301 pxa_usb_phy->version = PXA_USB_PHY_MMP2; 302 302