Commit d35c12b7 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Vinod Koul

phy: broadcom: sata: 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-brcm-sata.c:775:19: error: cast to smaller integer type 'enum brcm_sata_phy_version' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230810111958.205705-1-krzysztof.kozlowski@linaro.orgSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent aff76253
...@@ -772,7 +772,7 @@ static int brcm_sata_phy_probe(struct platform_device *pdev) ...@@ -772,7 +772,7 @@ static int brcm_sata_phy_probe(struct platform_device *pdev)
of_id = of_match_node(brcm_sata_phy_of_match, dn); of_id = of_match_node(brcm_sata_phy_of_match, dn);
if (of_id) if (of_id)
priv->version = (enum brcm_sata_phy_version)of_id->data; priv->version = (uintptr_t)of_id->data;
else else
priv->version = BRCM_SATA_PHY_STB_28NM; priv->version = BRCM_SATA_PHY_STB_28NM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment