Re: [PATCH 1/2] drivers: iio: pressure: Fixes BMP38x and BMP390 SPI support

From: Jonathan Cameron
Date: Sat Feb 24 2024 - 12:59:13 EST


On Tue, 20 Feb 2024 21:57:35 +0200
Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> wrote:

> On Tue, Feb 20, 2024 at 07:41:24PM +0100, Vasileios Amoiridis wrote:
> > According to the datasheet of BMP38x and BMP390 devices, for an SPI
> > read operation the first byte that is returned needs to be dropped,
> > and the rest of the bytes are the actual data returned from the
> > sensor.
>
> ...
>
> > +static int bmp380_regmap_spi_read(void *context, const void *reg,
> > + size_t reg_size, void *val, size_t val_size)
> > +{
> > + struct spi_device *spi = to_spi_device(context);
> > + u8 rx_buf[4];
> > + ssize_t status;
> > +
> > + /*
> > + * Maximum number of consecutive bytes read for a temperature or
> > + * pressure measurement is 3.
> > + */
> > + if (val_size > 3)
> > + return -EINVAL;
>
> I would add a blank line here.
>
> > + /*
> > + * According to the BMP3xx datasheets, for a basic SPI read opertion,
> > + * the first byte needs to be dropped and the rest are the requested
> > + * data.
> > + */
> > + status = spi_write_then_read(spi, reg, 1, rx_buf, val_size + 1);
> > + if (status)
> > + return status;
> > +
> > + memcpy(val, rx_buf + 1, val_size);
> > +
> > + return 0;
> > +}
>
> With above and bits.h location being addressed
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
>
I'd picked up previous version and tweaked it for the header being first.
Now updated the spacing above and added your tag.

Only did this rebase because it was the top of my fixes tree.