aboutsummaryrefslogtreecommitdiff
path: root/drivers/phy/marvell
diff options
context:
space:
mode:
authorGravatar Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> 2023-08-10 13:19:58 +0200
committerGravatar Vinod Koul <vkoul@kernel.org> 2023-08-11 09:25:15 +0100
commit7451eecf1ef8be9911749e927ce5690262cc9197 (patch)
treebccb3adb87673887a500f5fd5070ad957ed61070 /drivers/phy/marvell
parentphy: broadcom: sr-usb: fix Wvoid-pointer-to-enum-cast warning (diff)
downloadlinux-7451eecf1ef8be9911749e927ce5690262cc9197.tar.gz
linux-7451eecf1ef8be9911749e927ce5690262cc9197.tar.bz2
linux-7451eecf1ef8be9911749e927ce5690262cc9197.zip
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>
Diffstat (limited to 'drivers/phy/marvell')
-rw-r--r--drivers/phy/marvell/phy-pxa-usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/marvell/phy-pxa-usb.c b/drivers/phy/marvell/phy-pxa-usb.c
index ffe889893ff4..6c98eb9608e9 100644
--- a/drivers/phy/marvell/phy-pxa-usb.c
+++ b/drivers/phy/marvell/phy-pxa-usb.c
@@ -296,7 +296,7 @@ static int pxa_usb_phy_probe(struct platform_device *pdev)
of_id = of_match_node(pxa_usb_phy_of_match, dev->of_node);
if (of_id)
- pxa_usb_phy->version = (enum pxa_usb_phy_version)of_id->data;
+ pxa_usb_phy->version = (uintptr_t)of_id->data;
else
pxa_usb_phy->version = PXA_USB_PHY_MMP2;