diff options
author | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2021-11-28 17:24:35 +0000 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2021-12-21 15:10:02 +0000 |
commit | 702bab85d6cdb8aba464f3c8758399edc7368ff2 (patch) | |
tree | 2b6951761399e701a6c911bdc5d1257b1c8c2265 /drivers | |
parent | 1155ed05756a4e0f8fbc1760d6ca79354fe034c1 (diff) | |
download | linux-702bab85d6cdb8aba464f3c8758399edc7368ff2.tar.gz linux-702bab85d6cdb8aba464f3c8758399edc7368ff2.tar.bz2 linux-702bab85d6cdb8aba464f3c8758399edc7368ff2.zip |
iio:adc:ina2xx-adc: Suppress clang W=1 warning about pointer to enum conversion.
Cast to a uintptr_t rather than directly to the enum.
As per the discussion in below linked media patch.
Link: https://lore.kernel.org/linux-media/CAK8P3a2ez6nEw4d+Mqa3XXAz0RFTZHunqqRj6sCt7Y_Eqqs0rw@mail.gmail.com/
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/20211128172445.2616166-3-jic23@kernel.org
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/adc/ina2xx-adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ina2xx-adc.c b/drivers/iio/adc/ina2xx-adc.c index 08f243f5b92b..4f9992a51e64 100644 --- a/drivers/iio/adc/ina2xx-adc.c +++ b/drivers/iio/adc/ina2xx-adc.c @@ -971,7 +971,7 @@ static int ina2xx_probe(struct i2c_client *client, } if (client->dev.of_node) - type = (enum ina2xx_ids)of_device_get_match_data(&client->dev); + type = (uintptr_t)of_device_get_match_data(&client->dev); else type = id->driver_data; chip->config = &ina2xx_config[type]; |