mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
iio:magnetometer:bmc150: Move exports to IIO_BMC150_MAGN namespace
In order to avoid unnecessary pollution of the global symbol namespace move the common/library functions into a specific namespace and import that into the bus specific device drivers that use them. Note the MAGN postfix here is reflecting that this driver is only responsible for part of the BMC150 device. For more information see https://lwn.net/Articles/760045/ Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lore.kernel.org/r/20220130205701.334592-14-jic23@kernel.org
This commit is contained in:
parent
230ee6c69c
commit
47d6cae0d0
@ -226,7 +226,7 @@ const struct regmap_config bmc150_magn_regmap_config = {
|
||||
.writeable_reg = bmc150_magn_is_writeable_reg,
|
||||
.volatile_reg = bmc150_magn_is_volatile_reg,
|
||||
};
|
||||
EXPORT_SYMBOL(bmc150_magn_regmap_config);
|
||||
EXPORT_SYMBOL_NS(bmc150_magn_regmap_config, IIO_BMC150_MAGN);
|
||||
|
||||
static int bmc150_magn_set_power_mode(struct bmc150_magn_data *data,
|
||||
enum bmc150_magn_power_modes mode,
|
||||
@ -982,7 +982,7 @@ err_poweroff:
|
||||
bmc150_magn_set_power_mode(data, BMC150_MAGN_POWER_MODE_SUSPEND, true);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(bmc150_magn_probe);
|
||||
EXPORT_SYMBOL_NS(bmc150_magn_probe, IIO_BMC150_MAGN);
|
||||
|
||||
int bmc150_magn_remove(struct device *dev)
|
||||
{
|
||||
@ -1009,7 +1009,7 @@ int bmc150_magn_remove(struct device *dev)
|
||||
regulator_bulk_disable(ARRAY_SIZE(data->regulators), data->regulators);
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(bmc150_magn_remove);
|
||||
EXPORT_SYMBOL_NS(bmc150_magn_remove, IIO_BMC150_MAGN);
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int bmc150_magn_runtime_suspend(struct device *dev)
|
||||
@ -1077,7 +1077,7 @@ const struct dev_pm_ops bmc150_magn_pm_ops = {
|
||||
SET_RUNTIME_PM_OPS(bmc150_magn_runtime_suspend,
|
||||
bmc150_magn_runtime_resume, NULL)
|
||||
};
|
||||
EXPORT_SYMBOL(bmc150_magn_pm_ops);
|
||||
EXPORT_SYMBOL_NS(bmc150_magn_pm_ops, IIO_BMC150_MAGN);
|
||||
|
||||
MODULE_AUTHOR("Irina Tirdea <irina.tirdea@intel.com>");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -80,3 +80,4 @@ module_i2c_driver(bmc150_magn_driver);
|
||||
MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_DESCRIPTION("BMC150 I2C magnetometer driver");
|
||||
MODULE_IMPORT_NS(IIO_BMC150_MAGN);
|
||||
|
@ -66,3 +66,4 @@ module_spi_driver(bmc150_magn_spi_driver);
|
||||
MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
|
||||
MODULE_DESCRIPTION("BMC150 magnetometer SPI driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_IMPORT_NS(IIO_BMC150_MAGN);
|
||||
|
Loading…
Reference in New Issue
Block a user