[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260129210431.654266-1-eshwarsajja20@gmail.com>
Date: Fri, 30 Jan 2026 02:34:31 +0530
From: SAJJA EASWAR SAI <eshwarsajja20@...il.com>
To: Subhajit.Ghosh@...aklogic.com,
jic23@...nel.org
Cc: dlechner@...libre.com,
nuno.sa@...log.com,
andy@...nel.org,
linux-iio@...r.kernel.org,
linux-kernel@...r.kernel.org,
iryuken@...k.com,
SAJJA EASWAR SAI <eshwarsajja20@...il.com>
Subject: [PATCH] iio: light: apds9306: remove redundant explicit pointer cast
C allows implicit conversion from void * to struct apds9306_data *, so the
explicit cast on 'ptr' is unnecessary. Removing it improves readability.
Signed-off-by: SAJJA EASWAR SAI <eshwarsajja20@...il.com>
---
drivers/iio/light/apds9306.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/iio/light/apds9306.c b/drivers/iio/light/apds9306.c
index 7e68cca0e..5d18eabd9 100644
--- a/drivers/iio/light/apds9306.c
+++ b/drivers/iio/light/apds9306.c
@@ -1176,7 +1176,7 @@ static int apds9306_init_iio_gts(struct apds9306_data *data)
static void apds9306_powerdown(void *ptr)
{
- struct apds9306_data *data = (struct apds9306_data *)ptr;
+ struct apds9306_data *data = ptr;
struct apds9306_regfields *rf = &data->rf;
int ret;
--
2.52.0
Powered by blists - more mailing lists