diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-09-27 18:24:16 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2022-09-28 16:08:51 +0200 |
commit | a3682d2fe3c36c68899bf1b956ed68d36d005868 (patch) | |
tree | 1e7fab6cdbbc32e515b2f79a405b50bbe4fef4bc /drivers/pwm/pwm-lpss.c | |
parent | pwm: lpss: Deduplicate board info data structures (diff) | |
download | linux-a3682d2fe3c36c68899bf1b956ed68d36d005868.tar.xz linux-a3682d2fe3c36c68899bf1b956ed68d36d005868.zip |
pwm: lpss: Move exported symbols to PWM_LPSS namespace
Avoid unnecessary pollution of the global symbol namespace by
moving library functions in to a specific namespace and import
that into the drivers that make use of the functions.
For more info: https://lwn.net/Articles/760045/
Suggested-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/pwm-lpss.c')
-rw-r--r-- | drivers/pwm/pwm-lpss.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-lpss.c b/drivers/pwm/pwm-lpss.c index 9537aefd254a..74a296cb1af0 100644 --- a/drivers/pwm/pwm-lpss.c +++ b/drivers/pwm/pwm-lpss.c @@ -18,6 +18,8 @@ #include <linux/pm_runtime.h> #include <linux/time.h> +#define DEFAULT_SYMBOL_NAMESPACE PWM_LPSS + #include "pwm-lpss.h" #define PWM 0x00000000 |