diff options
author | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-01-30 21:56:56 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-02-18 12:42:27 +0100 |
commit | c7c848b05fb86aeb7fc8019f72f0462a7406e7a3 (patch) | |
tree | 4f92dfc17b42485d47c3fa87682b5a7ada4eaa8c /drivers/iio/pressure/mpl115.c | |
parent | iio:pressure:ms5611: Move exports into IIO_MS5611 namespace (diff) | |
download | linux-c7c848b05fb86aeb7fc8019f72f0462a7406e7a3.tar.xz linux-c7c848b05fb86aeb7fc8019f72f0462a7406e7a3.zip |
iio:pressure:mpl115: Move exports into IIO_MPL115 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.
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-12-jic23@kernel.org
Diffstat (limited to 'drivers/iio/pressure/mpl115.c')
-rw-r--r-- | drivers/iio/pressure/mpl115.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/pressure/mpl115.c b/drivers/iio/pressure/mpl115.c index 81f288312a28..5bf5b9abe6f1 100644 --- a/drivers/iio/pressure/mpl115.c +++ b/drivers/iio/pressure/mpl115.c @@ -187,7 +187,7 @@ int mpl115_probe(struct device *dev, const char *name, return devm_iio_device_register(dev, indio_dev); } -EXPORT_SYMBOL_GPL(mpl115_probe); +EXPORT_SYMBOL_NS_GPL(mpl115_probe, IIO_MPL115); MODULE_AUTHOR("Peter Meerwald <pmeerw@pmeerw.net>"); MODULE_DESCRIPTION("Freescale MPL115 pressure/temperature driver"); |