Skip to content

Commit d35c12b

Browse files
krzkvinodkoul
authored andcommitted
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: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20230810111958.205705-1-krzysztof.kozlowski@linaro.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent aff7625 commit d35c12b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/phy/broadcom/phy-brcm-sata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ static int brcm_sata_phy_probe(struct platform_device *pdev)
772772

773773
of_id = of_match_node(brcm_sata_phy_of_match, dn);
774774
if (of_id)
775-
priv->version = (enum brcm_sata_phy_version)of_id->data;
775+
priv->version = (uintptr_t)of_id->data;
776776
else
777777
priv->version = BRCM_SATA_PHY_STB_28NM;
778778

0 commit comments

Comments
 (0)