diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-09-18 23:07:46 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-09-18 23:07:46 +0200 |
commit | 0f40314b81b765c26202cde33523e35809adbe9b (patch) | |
tree | 34cbbf71b39f88edddb8693f0a61427f305b17fa /include/acpi/button.h | |
parent | 7dc1d36e8ef8f78f9dadf0476081f3c7ff7f79be (diff) | |
parent | bcb2b0b2bae2de744223c68521cd51c57feb486c (diff) | |
download | linux-0f40314b81b765c26202cde33523e35809adbe9b.tar.bz2 |
Merge branch 'acpi-bus'
* acpi-bus:
ACPI: Eliminate CONFIG_.*{, _MODULE} #ifdef in favor of IS_ENABLED()
ACPI: int340x_thermal: add missing CONFIG_ prefix
Diffstat (limited to 'include/acpi/button.h')
-rw-r--r-- | include/acpi/button.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/acpi/button.h b/include/acpi/button.h index 97eea0e4c016..1cad8b2d460c 100644 --- a/include/acpi/button.h +++ b/include/acpi/button.h @@ -3,7 +3,7 @@ #include <linux/notifier.h> -#if defined(CONFIG_ACPI_BUTTON) || defined(CONFIG_ACPI_BUTTON_MODULE) +#if IS_ENABLED(CONFIG_ACPI_BUTTON) extern int acpi_lid_notifier_register(struct notifier_block *nb); extern int acpi_lid_notifier_unregister(struct notifier_block *nb); extern int acpi_lid_open(void); @@ -20,6 +20,6 @@ static inline int acpi_lid_open(void) { return 1; } -#endif /* defined(CONFIG_ACPI_BUTTON) || defined(CONFIG_ACPI_BUTTON_MODULE) */ +#endif /* IS_ENABLED(CONFIG_ACPI_BUTTON) */ #endif /* ACPI_BUTTON_H */ |