Skip to content

Commit

Permalink
phy: broadcom: sr-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-bcm-sr-usb.c:314:13: error: cast to smaller integer type 'enum bcm_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-3-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 bd6e74a commit 2bc00b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/phy/broadcom/phy-bcm-sr-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ static int bcm_usb_phy_probe(struct platform_device *pdev)

of_id = of_match_node(bcm_usb_phy_of_match, dn);
if (of_id)
version = (enum bcm_usb_phy_version)of_id->data;
version = (uintptr_t)of_id->data;
else
return -ENODEV;

Expand Down

0 comments on commit 2bc00b9

Please sign in to comment.