Commit 9b924739 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: adxl34x - switch to using "guard" notation

Switch to using guard(mutex)() notation to acquire and automatically
release mutexes.
Reviewed-by: default avatarNuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240610164301.1048482-4-dmitry.torokhov@gmail.comSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 985addc1
...@@ -241,7 +241,8 @@ static void adxl34x_get_triple(struct adxl34x *ac, struct axis_triple *axis) ...@@ -241,7 +241,8 @@ static void adxl34x_get_triple(struct adxl34x *ac, struct axis_triple *axis)
ac->bops->read_block(ac->dev, DATAX0, DATAZ1 - DATAX0 + 1, buf); ac->bops->read_block(ac->dev, DATAX0, DATAZ1 - DATAX0 + 1, buf);
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
ac->saved.x = (s16) le16_to_cpu(buf[0]); ac->saved.x = (s16) le16_to_cpu(buf[0]);
axis->x = ac->saved.x; axis->x = ac->saved.x;
...@@ -250,7 +251,6 @@ static void adxl34x_get_triple(struct adxl34x *ac, struct axis_triple *axis) ...@@ -250,7 +251,6 @@ static void adxl34x_get_triple(struct adxl34x *ac, struct axis_triple *axis)
ac->saved.z = (s16) le16_to_cpu(buf[2]); ac->saved.z = (s16) le16_to_cpu(buf[2]);
axis->z = ac->saved.z; axis->z = ac->saved.z;
mutex_unlock(&ac->mutex);
} }
static void adxl34x_service_ev_fifo(struct adxl34x *ac) static void adxl34x_service_ev_fifo(struct adxl34x *ac)
...@@ -416,15 +416,13 @@ static int adxl34x_suspend(struct device *dev) ...@@ -416,15 +416,13 @@ static int adxl34x_suspend(struct device *dev)
{ {
struct adxl34x *ac = dev_get_drvdata(dev); struct adxl34x *ac = dev_get_drvdata(dev);
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (!ac->suspended && !ac->disabled && ac->opened) if (!ac->suspended && !ac->disabled && ac->opened)
__adxl34x_disable(ac); __adxl34x_disable(ac);
ac->suspended = true; ac->suspended = true;
mutex_unlock(&ac->mutex);
return 0; return 0;
} }
...@@ -432,15 +430,13 @@ static int adxl34x_resume(struct device *dev) ...@@ -432,15 +430,13 @@ static int adxl34x_resume(struct device *dev)
{ {
struct adxl34x *ac = dev_get_drvdata(dev); struct adxl34x *ac = dev_get_drvdata(dev);
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (ac->suspended && !ac->disabled && ac->opened) if (ac->suspended && !ac->disabled && ac->opened)
__adxl34x_enable(ac); __adxl34x_enable(ac);
ac->suspended = false; ac->suspended = false;
mutex_unlock(&ac->mutex);
return 0; return 0;
} }
...@@ -464,7 +460,7 @@ static ssize_t adxl34x_disable_store(struct device *dev, ...@@ -464,7 +460,7 @@ static ssize_t adxl34x_disable_store(struct device *dev,
if (error) if (error)
return error; return error;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (!ac->suspended && ac->opened) { if (!ac->suspended && ac->opened) {
if (val) { if (val) {
...@@ -478,8 +474,6 @@ static ssize_t adxl34x_disable_store(struct device *dev, ...@@ -478,8 +474,6 @@ static ssize_t adxl34x_disable_store(struct device *dev,
ac->disabled = !!val; ac->disabled = !!val;
mutex_unlock(&ac->mutex);
return count; return count;
} }
...@@ -489,16 +483,13 @@ static ssize_t adxl34x_calibrate_show(struct device *dev, ...@@ -489,16 +483,13 @@ static ssize_t adxl34x_calibrate_show(struct device *dev,
struct device_attribute *attr, char *buf) struct device_attribute *attr, char *buf)
{ {
struct adxl34x *ac = dev_get_drvdata(dev); struct adxl34x *ac = dev_get_drvdata(dev);
ssize_t count;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
count = sprintf(buf, "%d,%d,%d\n",
ac->hwcal.x * 4 + ac->swcal.x,
ac->hwcal.y * 4 + ac->swcal.y,
ac->hwcal.z * 4 + ac->swcal.z);
mutex_unlock(&ac->mutex);
return count; return sprintf(buf, "%d,%d,%d\n",
ac->hwcal.x * 4 + ac->swcal.x,
ac->hwcal.y * 4 + ac->swcal.y,
ac->hwcal.z * 4 + ac->swcal.z);
} }
static ssize_t adxl34x_calibrate_store(struct device *dev, static ssize_t adxl34x_calibrate_store(struct device *dev,
...@@ -512,7 +503,8 @@ static ssize_t adxl34x_calibrate_store(struct device *dev, ...@@ -512,7 +503,8 @@ static ssize_t adxl34x_calibrate_store(struct device *dev,
* We use HW calibration and handle the remaining bits in SW. (4mg/LSB) * We use HW calibration and handle the remaining bits in SW. (4mg/LSB)
*/ */
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
ac->hwcal.x -= (ac->saved.x / 4); ac->hwcal.x -= (ac->saved.x / 4);
ac->swcal.x = ac->saved.x % 4; ac->swcal.x = ac->saved.x % 4;
...@@ -525,7 +517,6 @@ static ssize_t adxl34x_calibrate_store(struct device *dev, ...@@ -525,7 +517,6 @@ static ssize_t adxl34x_calibrate_store(struct device *dev,
AC_WRITE(ac, OFSX, (s8) ac->hwcal.x); AC_WRITE(ac, OFSX, (s8) ac->hwcal.x);
AC_WRITE(ac, OFSY, (s8) ac->hwcal.y); AC_WRITE(ac, OFSY, (s8) ac->hwcal.y);
AC_WRITE(ac, OFSZ, (s8) ac->hwcal.z); AC_WRITE(ac, OFSZ, (s8) ac->hwcal.z);
mutex_unlock(&ac->mutex);
return count; return count;
} }
...@@ -553,15 +544,13 @@ static ssize_t adxl34x_rate_store(struct device *dev, ...@@ -553,15 +544,13 @@ static ssize_t adxl34x_rate_store(struct device *dev,
if (error) if (error)
return error; return error;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
ac->pdata.data_rate = RATE(val); ac->pdata.data_rate = RATE(val);
AC_WRITE(ac, BW_RATE, AC_WRITE(ac, BW_RATE,
ac->pdata.data_rate | ac->pdata.data_rate |
(ac->pdata.low_power_mode ? LOW_POWER : 0)); (ac->pdata.low_power_mode ? LOW_POWER : 0));
mutex_unlock(&ac->mutex);
return count; return count;
} }
...@@ -588,7 +577,7 @@ static ssize_t adxl34x_autosleep_store(struct device *dev, ...@@ -588,7 +577,7 @@ static ssize_t adxl34x_autosleep_store(struct device *dev,
if (error) if (error)
return error; return error;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (val) if (val)
ac->pdata.power_mode |= (PCTL_AUTO_SLEEP | PCTL_LINK); ac->pdata.power_mode |= (PCTL_AUTO_SLEEP | PCTL_LINK);
...@@ -598,8 +587,6 @@ static ssize_t adxl34x_autosleep_store(struct device *dev, ...@@ -598,8 +587,6 @@ static ssize_t adxl34x_autosleep_store(struct device *dev,
if (!ac->disabled && !ac->suspended && ac->opened) if (!ac->disabled && !ac->suspended && ac->opened)
AC_WRITE(ac, POWER_CTL, ac->pdata.power_mode | PCTL_MEASURE); AC_WRITE(ac, POWER_CTL, ac->pdata.power_mode | PCTL_MEASURE);
mutex_unlock(&ac->mutex);
return count; return count;
} }
...@@ -610,14 +597,11 @@ static ssize_t adxl34x_position_show(struct device *dev, ...@@ -610,14 +597,11 @@ static ssize_t adxl34x_position_show(struct device *dev,
struct device_attribute *attr, char *buf) struct device_attribute *attr, char *buf)
{ {
struct adxl34x *ac = dev_get_drvdata(dev); struct adxl34x *ac = dev_get_drvdata(dev);
ssize_t count;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
count = sprintf(buf, "(%d, %d, %d)\n",
ac->saved.x, ac->saved.y, ac->saved.z);
mutex_unlock(&ac->mutex);
return count; return sprintf(buf, "(%d, %d, %d)\n",
ac->saved.x, ac->saved.y, ac->saved.z);
} }
static DEVICE_ATTR(position, S_IRUGO, adxl34x_position_show, NULL); static DEVICE_ATTR(position, S_IRUGO, adxl34x_position_show, NULL);
...@@ -638,9 +622,8 @@ static ssize_t adxl34x_write_store(struct device *dev, ...@@ -638,9 +622,8 @@ static ssize_t adxl34x_write_store(struct device *dev,
if (error) if (error)
return error; return error;
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
AC_WRITE(ac, val >> 8, val & 0xFF); AC_WRITE(ac, val >> 8, val & 0xFF);
mutex_unlock(&ac->mutex);
return count; return count;
} }
...@@ -674,15 +657,13 @@ static int adxl34x_input_open(struct input_dev *input) ...@@ -674,15 +657,13 @@ static int adxl34x_input_open(struct input_dev *input)
{ {
struct adxl34x *ac = input_get_drvdata(input); struct adxl34x *ac = input_get_drvdata(input);
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (!ac->suspended && !ac->disabled) if (!ac->suspended && !ac->disabled)
__adxl34x_enable(ac); __adxl34x_enable(ac);
ac->opened = true; ac->opened = true;
mutex_unlock(&ac->mutex);
return 0; return 0;
} }
...@@ -690,14 +671,12 @@ static void adxl34x_input_close(struct input_dev *input) ...@@ -690,14 +671,12 @@ static void adxl34x_input_close(struct input_dev *input)
{ {
struct adxl34x *ac = input_get_drvdata(input); struct adxl34x *ac = input_get_drvdata(input);
mutex_lock(&ac->mutex); guard(mutex)(&ac->mutex);
if (!ac->suspended && !ac->disabled) if (!ac->suspended && !ac->disabled)
__adxl34x_disable(ac); __adxl34x_disable(ac);
ac->opened = false; ac->opened = false;
mutex_unlock(&ac->mutex);
} }
struct adxl34x *adxl34x_probe(struct device *dev, int irq, struct adxl34x *adxl34x_probe(struct device *dev, int irq,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment