diff mbox series

iio: temperature: max30208: Remove an unused field in struct max30208_data

Message ID 73f9f540ecdc7c10e833e6fc782324ae7d34ba9c.1714555144.git.christophe.jaillet@wanadoo.fr (mailing list archive)
State Accepted
Headers show
Series iio: temperature: max30208: Remove an unused field in struct max30208_data | expand

Commit Message

Christophe JAILLET May 1, 2024, 9:19 a.m. UTC
In "struct max30208_data", the 'indio_dev' field is unused.
Remove it.

Found with cppcheck, unusedStructMember.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
Compile tested only.

It was added in the initial commit 9ee95ae4cffd ("iio: temperature: Add
driver support for Maxim MAX30208") but was never used.
---
 drivers/iio/temperature/max30208.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Jonathan Cameron May 4, 2024, 11:39 a.m. UTC | #1
On Wed,  1 May 2024 11:19:41 +0200
Christophe JAILLET <christophe.jaillet@wanadoo.fr> wrote:

> In "struct max30208_data", the 'indio_dev' field is unused.
> Remove it.
> 
> Found with cppcheck, unusedStructMember.
> 
> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Applied,

Thanks,

J
> ---
> Compile tested only.
> 
> It was added in the initial commit 9ee95ae4cffd ("iio: temperature: Add
> driver support for Maxim MAX30208") but was never used.
> ---
>  drivers/iio/temperature/max30208.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/iio/temperature/max30208.c b/drivers/iio/temperature/max30208.c
> index 48be03852cd8..720469f9dc36 100644
> --- a/drivers/iio/temperature/max30208.c
> +++ b/drivers/iio/temperature/max30208.c
> @@ -34,7 +34,6 @@
>  
>  struct max30208_data {
>  	struct i2c_client *client;
> -	struct iio_dev *indio_dev;
>  	struct mutex lock; /* Lock to prevent concurrent reads of temperature readings */
>  };
>
diff mbox series

Patch

diff --git a/drivers/iio/temperature/max30208.c b/drivers/iio/temperature/max30208.c
index 48be03852cd8..720469f9dc36 100644
--- a/drivers/iio/temperature/max30208.c
+++ b/drivers/iio/temperature/max30208.c
@@ -34,7 +34,6 @@ 
 
 struct max30208_data {
 	struct i2c_client *client;
-	struct iio_dev *indio_dev;
 	struct mutex lock; /* Lock to prevent concurrent reads of temperature readings */
 };