iio: common: ms_sensors: Remove unnecessary cast on void pointer
authorsimran singhal <singhalsimran0@gmail.com>
Sat, 1 Apr 2017 14:09:21 +0000 (19:39 +0530)
committerJonathan Cameron <jic23@kernel.org>
Sun, 2 Apr 2017 08:47:57 +0000 (09:47 +0100)
The following Coccinelle script was used to detect this:
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
  *((T *)e)
|
  ((T *)x)[...]
|
  ((T*)x)->f
|
- (T*)
  e
)

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/common/ms_sensors/ms_sensors_i2c.c

index ecf7721..125b5ff 100644 (file)
@@ -74,7 +74,7 @@ EXPORT_SYMBOL(ms_sensors_reset);
 int ms_sensors_read_prom_word(void *cli, int cmd, u16 *word)
 {
        int ret;
-       struct i2c_client *client = (struct i2c_client *)cli;
+       struct i2c_client *client = cli;
 
        ret = i2c_smbus_read_word_swapped(client, cmd);
        if (ret < 0) {
@@ -107,7 +107,7 @@ int ms_sensors_convert_and_read(void *cli, u8 conv, u8 rd,
 {
        int ret;
        __be32 buf = 0;
-       struct i2c_client *client = (struct i2c_client *)cli;
+       struct i2c_client *client = cli;
 
        /* Trigger conversion */
        ret = i2c_smbus_write_byte(client, conv);