Re: [PATCH v7 1/7] iio: accel: adxl345: add function to switch measuring mode

From: Christophe JAILLET
Date: Sat Dec 14 2024 - 06:34:57 EST


Le 13/12/2024 à 22:19, Lothar Rubusch a écrit :
Replace the powerup / powerdown functions by a generic function to put
the sensor in STANDBY, or MEASURE mode. When configuring the FIFO for
several features of the accelerometer, it is recommended to put
measuring in STANDBY mode.

...

+static int adxl345_set_measure_en(struct adxl345_state *st, bool en)
+{
+ unsigned int val = 0;

Nitpick: useless init

+
+ val = (en) ? ADXL345_POWER_CTL_MEASURE : ADXL345_POWER_CTL_STANDBY;

Nitpick: useless () around en.

+ return regmap_write(st->regmap, ADXL345_REG_POWER_CTL, val);
+}

...