regulator: fan53880: Add support for COMPILE_TEST
This patch adds support for COMPILE_TEST while fixing a warning when no support for device tree is there. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Christoph Fritz <chf.fritz@googlemail.com> Link: https://lore.kernel.org/r/1c437154873ace65ff738a0ebca511308f1cecc1.camel@googlemail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
083986c24b
commit
318b8a09f2
|
@ -338,7 +338,7 @@ config REGULATOR_FAN53555
|
||||||
|
|
||||||
config REGULATOR_FAN53880
|
config REGULATOR_FAN53880
|
||||||
tristate "Fairchild FAN53880 Regulator"
|
tristate "Fairchild FAN53880 Regulator"
|
||||||
depends on I2C
|
depends on I2C && (OF || COMPILE_TEST)
|
||||||
select REGMAP_I2C
|
select REGMAP_I2C
|
||||||
help
|
help
|
||||||
This driver supports Fairchild (ON Semiconductor) FAN53880
|
This driver supports Fairchild (ON Semiconductor) FAN53880
|
||||||
|
|
|
@ -155,11 +155,13 @@ static int fan53880_i2c_probe(struct i2c_client *i2c,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_OF
|
||||||
static const struct of_device_id fan53880_dt_ids[] = {
|
static const struct of_device_id fan53880_dt_ids[] = {
|
||||||
{ .compatible = "onnn,fan53880", },
|
{ .compatible = "onnn,fan53880", },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, fan53880_dt_ids);
|
MODULE_DEVICE_TABLE(of, fan53880_dt_ids);
|
||||||
|
#endif
|
||||||
|
|
||||||
static const struct i2c_device_id fan53880_i2c_id[] = {
|
static const struct i2c_device_id fan53880_i2c_id[] = {
|
||||||
{ "fan53880", },
|
{ "fan53880", },
|
||||||
|
|
Loading…
Reference in New Issue