Commit 44482310 authored by Jagath Jog J's avatar Jagath Jog J Committed by Jonathan Cameron

iio: imu: bmi323: Make the local structures static

Make the local structures static within their respective driver files.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202311070530.qKhLTz1Y-lkp@intel.com/Signed-off-by: default avatarJagath Jog J <jagathjog1996@gmail.com>
Link: https://lore.kernel.org/r/20231108035831.5889-1-jagathjog1996@gmail.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 00799564
......@@ -66,7 +66,7 @@ static struct regmap_bus bmi323_regmap_bus = {
.write = bmi323_regmap_i2c_write,
};
const struct regmap_config bmi323_i2c_regmap_config = {
static const struct regmap_config bmi323_i2c_regmap_config = {
.reg_bits = 8,
.val_bits = 16,
.max_register = BMI323_CFG_RES_REG,
......
......@@ -41,7 +41,7 @@ static struct regmap_bus bmi323_regmap_bus = {
.write = bmi323_regmap_spi_write,
};
const struct regmap_config bmi323_spi_regmap_config = {
static const struct regmap_config bmi323_spi_regmap_config = {
.reg_bits = 8,
.val_bits = 16,
.pad_bits = 8,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment