Skip to content

Commit

Permalink
phy: marvell pxa-usb: fix Wvoid-pointer-to-enum-cast warning
Browse files Browse the repository at this point in the history
'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>
  • Loading branch information
Krzysztof Kozlowski authored and Vinod Koul committed Aug 11, 2023
1 parent 2bc00b9 commit 7451eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/phy/marvell/phy-pxa-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 7451eec

Please sign in to comment.