mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-07 13:53:24 +00:00
iio: pressure: bmp280: Rearrange vars in reverse xmas tree order
Small cleanup reordering local variable declarations following reverse christmas tree convention. Signed-off-by: Angel Iglesias <ang.iglesiasg@gmail.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/bb63a996eb9c4555bf83471770f0169d2627e79c.1697994521.git.ang.iglesiasg@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
faac4dda9a
commit
48245f4a8c
@ -7,9 +7,9 @@
|
||||
|
||||
static int bmp280_i2c_probe(struct i2c_client *client)
|
||||
{
|
||||
struct regmap *regmap;
|
||||
const struct bmp280_chip_info *chip_info;
|
||||
const struct i2c_device_id *id = i2c_client_get_device_id(client);
|
||||
const struct bmp280_chip_info *chip_info;
|
||||
struct regmap *regmap;
|
||||
|
||||
chip_info = i2c_get_match_data(client);
|
||||
|
||||
|
@ -14,8 +14,7 @@
|
||||
static int bmp280_regmap_spi_write(void *context, const void *data,
|
||||
size_t count)
|
||||
{
|
||||
struct device *dev = context;
|
||||
struct spi_device *spi = to_spi_device(dev);
|
||||
struct spi_device *spi = to_spi_device(context);
|
||||
u8 buf[2];
|
||||
|
||||
memcpy(buf, data, 2);
|
||||
@ -31,8 +30,7 @@ static int bmp280_regmap_spi_write(void *context, const void *data,
|
||||
static int bmp280_regmap_spi_read(void *context, const void *reg,
|
||||
size_t reg_size, void *val, size_t val_size)
|
||||
{
|
||||
struct device *dev = context;
|
||||
struct spi_device *spi = to_spi_device(dev);
|
||||
struct spi_device *spi = to_spi_device(context);
|
||||
|
||||
return spi_write_then_read(spi, reg, reg_size, val, val_size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user