linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 1/3] spi: sc18is602: fix Wvoid-pointer-to-enum-cast warning
@ 2023-08-10  9:12 Krzysztof Kozlowski
  2023-08-10  9:12 ` [PATCH net-next 2/3] spi: pxa2xx: " Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-08-10  9:12 UTC (permalink / raw)
  To: Sanjay R Mehta, Mark Brown, Daniel Mack, Haojian Zhuang,
	Robert Jarzmik, linux-spi, linux-kernel, linux-arm-kernel
  Cc: Andi Shyti, Krzysztof Kozlowski

'id' is an enum, thus cast of pointer on 64-bit compile test with W=1
causes:

  spi-sc18is602.c:269:12: error: cast to smaller integer type 'enum chips' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/spi/spi-sc18is602.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-sc18is602.c b/drivers/spi/spi-sc18is602.c
index c67a24daaaf9..9f98bf350697 100644
--- a/drivers/spi/spi-sc18is602.c
+++ b/drivers/spi/spi-sc18is602.c
@@ -266,7 +266,7 @@ static int sc18is602_probe(struct i2c_client *client)
 	hw->ctrl = 0xff;
 
 	if (client->dev.of_node)
-		hw->id = (enum chips)of_device_get_match_data(&client->dev);
+		hw->id = (uintptr_t)of_device_get_match_data(&client->dev);
 	else
 		hw->id = id->driver_data;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-08-14 20:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-10  9:12 [PATCH net-next 1/3] spi: sc18is602: fix Wvoid-pointer-to-enum-cast warning Krzysztof Kozlowski
2023-08-10  9:12 ` [PATCH net-next 2/3] spi: pxa2xx: " Krzysztof Kozlowski
2023-08-10  9:12 ` [PATCH net-next 3/3] spi: amd: " Krzysztof Kozlowski
2023-08-10 11:21 ` [PATCH net-next 1/3] spi: sc18is602: " Krzysztof Kozlowski
2023-08-14 20:58 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).