From: Krzysztof Kozlowski Date: Thu, 10 Aug 2023 11:19:57 +0000 (+0200) Subject: phy: broadcom: sr-usb: fix Wvoid-pointer-to-enum-cast warning X-Git-Tag: v6.6-rc1~73^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2bc00b9b9001329792b14ce20141f334b6debcbc;p=thirdparty%2Fkernel%2Flinux.git phy: broadcom: sr-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-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 Link: https://lore.kernel.org/r/20230810111958.205705-3-krzysztof.kozlowski@linaro.org Signed-off-by: Vinod Koul --- diff --git a/drivers/phy/broadcom/phy-bcm-sr-usb.c b/drivers/phy/broadcom/phy-bcm-sr-usb.c index 0002da3b5b5d7..b0bd18a5df879 100644 --- a/drivers/phy/broadcom/phy-bcm-sr-usb.c +++ b/drivers/phy/broadcom/phy-bcm-sr-usb.c @@ -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;