diff options
| author | Masahiro Yamada <[email protected]> | 2024-12-03 10:21:07 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2024-12-03 16:22:25 +0000 |
| commit | ceb8bf2ceaa77fe222fe8fe32cb7789c9099ddf1 (patch) | |
| tree | 9cef7be8e703eee32a996c692fd770458274af1b /drivers/pwm/pwm-lpss.c | |
| parent | doc: module: revert misconversions for MODULE_IMPORT_NS() (diff) | |
| download | kernel-ceb8bf2ceaa77fe222fe8fe32cb7789c9099ddf1.tar.gz kernel-ceb8bf2ceaa77fe222fe8fe32cb7789c9099ddf1.zip | |
module: Convert default symbol namespace to string literal
Commit cdd30ebb1b9f ("module: Convert symbol namespace to string
literal") only converted MODULE_IMPORT_NS() and EXPORT_SYMBOL_NS(),
leaving DEFAULT_SYMBOL_NAMESPACE as a macro expansion.
This commit converts DEFAULT_SYMBOL_NAMESPACE in the same way to avoid
annoyance for the default namespace as well.
Signed-off-by: Masahiro Yamada <[email protected]>
Reviewed-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-lpss.c')
| -rw-r--r-- | drivers/pwm/pwm-lpss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-lpss.c b/drivers/pwm/pwm-lpss.c index 867e2bc8c601..3b99feb3bb49 100644 --- a/drivers/pwm/pwm-lpss.c +++ b/drivers/pwm/pwm-lpss.c @@ -19,7 +19,7 @@ #include <linux/pm_runtime.h> #include <linux/time.h> -#define DEFAULT_SYMBOL_NAMESPACE PWM_LPSS +#define DEFAULT_SYMBOL_NAMESPACE "PWM_LPSS" #include "pwm-lpss.h" |
