public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC RESEND] soc: pxa: ssp: Cast to enum pxa_ssp_type instead of int
@ 2024-01-03 21:06 Duje Mihanović
  2024-01-04  9:08 ` Uwe Kleine-König
  0 siblings, 1 reply; 6+ messages in thread
From: Duje Mihanović @ 2024-01-03 21:06 UTC (permalink / raw)
  To: Arnd Bergmann, Robert Jarzmik
  Cc: Duje Mihanović, Lubomir Rintel, Uwe Kleine-König,
	zhang songyi, soc, linux-kernel

On ARM64 platforms, id->data is a 64-bit value and casting it to a
32-bit integer causes build errors. Cast it to the corresponding enum
instead.

Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
---
This patch is necessary for my Marvell PXA1908 series to compile successfully
with allyesconfig:
https://lore.kernel.org/all/20231102-pxa1908-lkml-v7-0-cabb1a0cb52b@skole.hr/
---
 drivers/soc/pxa/ssp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/soc/pxa/ssp.c b/drivers/soc/pxa/ssp.c
index a1e8a07f7275..e2ffd8fd7e13 100644
--- a/drivers/soc/pxa/ssp.c
+++ b/drivers/soc/pxa/ssp.c
@@ -152,11 +152,11 @@ static int pxa_ssp_probe(struct platform_device *pdev)
 	if (dev->of_node) {
 		const struct of_device_id *id =
 			of_match_device(of_match_ptr(pxa_ssp_of_ids), dev);
-		ssp->type = (int) id->data;
+		ssp->type = (enum pxa_ssp_type) id->data;
 	} else {
 		const struct platform_device_id *id =
 			platform_get_device_id(pdev);
-		ssp->type = (int) id->driver_data;
+		ssp->type = (enum pxa_ssp_type) id->driver_data;
 
 		/* PXA2xx/3xx SSP ports starts from 1 and the internal pdev->id
 		 * starts from 0, do a translation here
-- 
2.43.0



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

end of thread, other threads:[~2024-01-06 12:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-03 21:06 [PATCH RFC RESEND] soc: pxa: ssp: Cast to enum pxa_ssp_type instead of int Duje Mihanović
2024-01-04  9:08 ` Uwe Kleine-König
2024-01-04 10:03   ` Arnd Bergmann
2024-01-04 12:02     ` Uwe Kleine-König
2024-01-04 14:23     ` Duje Mihanović
2024-01-06 12:08       ` Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox