Message ID | 20240904044244.1042174-2-dmitry.torokhov@gmail.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | f9f37373ff02b64a46b266d25d680a061ed13a8d |
Headers | show |
Series | Convert misc input drivers to use new cleanup facilities | expand |
On 04/09/2024 06:42, Dmitry Torokhov wrote: > Using guard notation makes the code more compact and error handling > more robust by ensuring that mutexes are released in all code paths > when control leaves critical section. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> > --- > drivers/input/misc/ad714x.c | 12 +++--------- > 1 file changed, 3 insertions(+), 9 deletions(-) > > diff --git a/drivers/input/misc/ad714x.c b/drivers/input/misc/ad714x.c > index 1acd8429c56c..d106f37df6bc 100644 > --- a/drivers/input/misc/ad714x.c > +++ b/drivers/input/misc/ad714x.c > @@ -941,7 +941,7 @@ static irqreturn_t ad714x_interrupt_thread(int irq, void *data) > struct ad714x_chip *ad714x = data; > int i; > > - mutex_lock(&ad714x->mutex); > + guard(mutex)(&ad714x->mutex); > > ad714x->read(ad714x, STG_LOW_INT_STA_REG, &ad714x->l_state, 3); > > @@ -954,8 +954,6 @@ static irqreturn_t ad714x_interrupt_thread(int irq, void *data) > for (i = 0; i < ad714x->hw->touchpad_num; i++) > ad714x_touchpad_state_machine(ad714x, i); > > - mutex_unlock(&ad714x->mutex); > - > return IRQ_HANDLED; > } > > @@ -1169,13 +1167,11 @@ static int ad714x_suspend(struct device *dev) > > dev_dbg(ad714x->dev, "%s enter\n", __func__); > > - mutex_lock(&ad714x->mutex); > + guard(mutex)(&ad714x->mutex); > > data = ad714x->hw->sys_cfg_reg[AD714X_PWR_CTRL] | 0x3; > ad714x->write(ad714x, AD714X_PWR_CTRL, data); > > - mutex_unlock(&ad714x->mutex); > - > return 0; > } > > @@ -1184,7 +1180,7 @@ static int ad714x_resume(struct device *dev) > struct ad714x_chip *ad714x = dev_get_drvdata(dev); > dev_dbg(ad714x->dev, "%s enter\n", __func__); > > - mutex_lock(&ad714x->mutex); > + guard(mutex)(&ad714x->mutex); > > /* resume to non-shutdown mode */ > > @@ -1197,8 +1193,6 @@ static int ad714x_resume(struct device *dev) > > ad714x->read(ad714x, STG_LOW_INT_STA_REG, &ad714x->l_state, 3); > > - mutex_unlock(&ad714x->mutex); > - > return 0; > } > Reviewed-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
diff --git a/drivers/input/misc/ad714x.c b/drivers/input/misc/ad714x.c index 1acd8429c56c..d106f37df6bc 100644 --- a/drivers/input/misc/ad714x.c +++ b/drivers/input/misc/ad714x.c @@ -941,7 +941,7 @@ static irqreturn_t ad714x_interrupt_thread(int irq, void *data) struct ad714x_chip *ad714x = data; int i; - mutex_lock(&ad714x->mutex); + guard(mutex)(&ad714x->mutex); ad714x->read(ad714x, STG_LOW_INT_STA_REG, &ad714x->l_state, 3); @@ -954,8 +954,6 @@ static irqreturn_t ad714x_interrupt_thread(int irq, void *data) for (i = 0; i < ad714x->hw->touchpad_num; i++) ad714x_touchpad_state_machine(ad714x, i); - mutex_unlock(&ad714x->mutex); - return IRQ_HANDLED; } @@ -1169,13 +1167,11 @@ static int ad714x_suspend(struct device *dev) dev_dbg(ad714x->dev, "%s enter\n", __func__); - mutex_lock(&ad714x->mutex); + guard(mutex)(&ad714x->mutex); data = ad714x->hw->sys_cfg_reg[AD714X_PWR_CTRL] | 0x3; ad714x->write(ad714x, AD714X_PWR_CTRL, data); - mutex_unlock(&ad714x->mutex); - return 0; } @@ -1184,7 +1180,7 @@ static int ad714x_resume(struct device *dev) struct ad714x_chip *ad714x = dev_get_drvdata(dev); dev_dbg(ad714x->dev, "%s enter\n", __func__); - mutex_lock(&ad714x->mutex); + guard(mutex)(&ad714x->mutex); /* resume to non-shutdown mode */ @@ -1197,8 +1193,6 @@ static int ad714x_resume(struct device *dev) ad714x->read(ad714x, STG_LOW_INT_STA_REG, &ad714x->l_state, 3); - mutex_unlock(&ad714x->mutex); - return 0; }
Using guard notation makes the code more compact and error handling more robust by ensuring that mutexes are released in all code paths when control leaves critical section. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/misc/ad714x.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-)