]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
platform/x86: dell-privacy: correct CONFIG_DELL_WMI_PRIVACY macro name in comments
authorEthan Nelson-Moore <enelsonmoore@gmail.com>
Thu, 11 Jun 2026 00:12:34 +0000 (17:12 -0700)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Thu, 11 Jun 2026 11:54:45 +0000 (14:54 +0300)
Comments in drivers/platform/x86/dell/dell-wmi-privacy.h incorrectly
refer to CONFIG_DELL_PRIVACY instead of CONFIG_DELL_WMI_PRIVACY.
Correct them.

Discovered while searching for CONFIG_* symbols referenced in code but
not defined in any Kconfig file.

Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Link: https://patch.msgid.link/20260611001238.391045-1-enelsonmoore@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/dell/dell-wmi-privacy.h

index 50c9b943dd47561bd2cee7d0426b7f65c9672e9d..ca242e1fe53fd9df2c706690e57eee208eee0354 100644 (file)
@@ -13,7 +13,7 @@ bool dell_privacy_has_mic_mute(void);
 bool dell_privacy_process_event(int type, int code, int status);
 int dell_privacy_register_driver(void);
 void dell_privacy_unregister_driver(void);
-#else /* CONFIG_DELL_PRIVACY */
+#else /* CONFIG_DELL_WMI_PRIVACY */
 static inline bool dell_privacy_has_mic_mute(void)
 {
        return false;
@@ -32,5 +32,5 @@ static inline int dell_privacy_register_driver(void)
 static inline void dell_privacy_unregister_driver(void)
 {
 }
-#endif /* CONFIG_DELL_PRIVACY */
+#endif /* CONFIG_DELL_WMI_PRIVACY */
 #endif