Re: [PATCH 2/3] iio: imu: bmi270: rename variable bmi270_device to data
From: Jonathan Cameron
Date: Sat Feb 22 2025 - 12:32:02 EST
On Wed, 19 Feb 2025 20:54:46 -0300
Gustavo Silva <gustavograzs@xxxxxxxxx> wrote:
> Rename all instances of 'struct bmi270_data' to 'data', to ensure
> consistency across the driver.
>
> Signed-off-by: Gustavo Silva <gustavograzs@xxxxxxxxx>
> ---
> drivers/iio/imu/bmi270/bmi270_core.c | 79 ++++++++++++++++++------------------
> 1 file changed, 39 insertions(+), 40 deletions(-)
>
> diff --git a/drivers/iio/imu/bmi270/bmi270_core.c b/drivers/iio/imu/bmi270/bmi270_core.c
> index 9f24d4044ed6f00f67fd3a8f5adda821c3140a18..56ebd887fcec94b684dc23f1b4503b719fb39239 100644
> --- a/drivers/iio/imu/bmi270/bmi270_core.c
> +++ b/drivers/iio/imu/bmi270/bmi270_core.c
> @@ -90,7 +90,7 @@ struct bmi270_data {
> struct {
> __le16 channels[6];
> aligned_s64 timestamp;
> - } data __aligned(IIO_DMA_MINALIGN);
> + } buffer __aligned(IIO_DMA_MINALIGN);
> };
>
> enum bmi270_scan {
> @@ -284,7 +284,7 @@ static int bmi270_set_scale(struct bmi270_data *data, int chan_type, int uscale)
> return -EINVAL;
> }
>
> -static int bmi270_get_scale(struct bmi270_data *bmi270_device, int chan_type,
> +static int bmi270_get_scale(struct bmi270_data *data, int chan_type,
> int *scale, int *uscale)
> {
> int ret;
> @@ -293,7 +293,7 @@ static int bmi270_get_scale(struct bmi270_data *bmi270_device, int chan_type,
>
> switch (chan_type) {
> case IIO_ACCEL:
> - ret = regmap_read(bmi270_device->regmap,
> + ret = regmap_read(data->regmap,
> BMI270_ACC_CONF_RANGE_REG, &val);
Given shorter naming, a few places like this should be re line wrapped.
> if (ret)
> return ret;