mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
iio: imu: st_lsm6dsx: Remove unnecessary cast on void pointer
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>
This commit is contained in:
parent
7ae6df68d6
commit
407e0b537e
@ -364,7 +364,7 @@ static int st_lsm6dsx_update_fifo(struct iio_dev *iio_dev, bool enable)
|
|||||||
|
|
||||||
static irqreturn_t st_lsm6dsx_handler_irq(int irq, void *private)
|
static irqreturn_t st_lsm6dsx_handler_irq(int irq, void *private)
|
||||||
{
|
{
|
||||||
struct st_lsm6dsx_hw *hw = (struct st_lsm6dsx_hw *)private;
|
struct st_lsm6dsx_hw *hw = private;
|
||||||
struct st_lsm6dsx_sensor *sensor;
|
struct st_lsm6dsx_sensor *sensor;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -388,7 +388,7 @@ static irqreturn_t st_lsm6dsx_handler_irq(int irq, void *private)
|
|||||||
|
|
||||||
static irqreturn_t st_lsm6dsx_handler_thread(int irq, void *private)
|
static irqreturn_t st_lsm6dsx_handler_thread(int irq, void *private)
|
||||||
{
|
{
|
||||||
struct st_lsm6dsx_hw *hw = (struct st_lsm6dsx_hw *)private;
|
struct st_lsm6dsx_hw *hw = private;
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
mutex_lock(&hw->fifo_lock);
|
mutex_lock(&hw->fifo_lock);
|
||||||
|
Loading…
Reference in New Issue
Block a user