mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 02:33:57 +00:00
iio: chemical: bme680: Fix typo in define
Fix a define typo that instead of BME680_... it is saying BM6880_... Signed-off-by: Vasileios Amoiridis <vassilisamir@gmail.com> Link: https://patch.msgid.link/20240609233826.330516-3-vassilisamir@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
77641e5a47
commit
dfbfb2283c
@ -12,7 +12,7 @@
|
||||
|
||||
#define BME680_REG_TEMP_MSB 0x22
|
||||
#define BME680_REG_PRESS_MSB 0x1F
|
||||
#define BM6880_REG_HUMIDITY_MSB 0x25
|
||||
#define BME680_REG_HUMIDITY_MSB 0x25
|
||||
#define BME680_REG_GAS_MSB 0x2A
|
||||
#define BME680_REG_GAS_R_LSB 0x2B
|
||||
#define BME680_GAS_STAB_BIT BIT(4)
|
||||
|
@ -740,7 +740,7 @@ static int bme680_read_humid(struct bme680_data *data,
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = regmap_bulk_read(data->regmap, BM6880_REG_HUMIDITY_MSB,
|
||||
ret = regmap_bulk_read(data->regmap, BME680_REG_HUMIDITY_MSB,
|
||||
&tmp, sizeof(tmp));
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "failed to read humidity\n");
|
||||
|
Loading…
Reference in New Issue
Block a user