Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <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>

authored by

Krzysztof Kozlowski and committed by
Vinod Koul
2bc00b9b bd6e74a2

+1 -1
+1 -1
drivers/phy/broadcom/phy-bcm-sr-usb.c
··· 311 311 312 312 of_id = of_match_node(bcm_usb_phy_of_match, dn); 313 313 if (of_id) 314 - version = (enum bcm_usb_phy_version)of_id->data; 314 + version = (uintptr_t)of_id->data; 315 315 else 316 316 return -ENODEV; 317 317