forked from Minki/linux
e346d0cf2c
There are no users of the acpi_lid_notifier_[un]register functions, so lets remove them. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
15 lines
282 B
C
15 lines
282 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ACPI_BUTTON_H
|
|
#define ACPI_BUTTON_H
|
|
|
|
#if IS_ENABLED(CONFIG_ACPI_BUTTON)
|
|
extern int acpi_lid_open(void);
|
|
#else
|
|
static inline int acpi_lid_open(void)
|
|
{
|
|
return 1;
|
|
}
|
|
#endif /* IS_ENABLED(CONFIG_ACPI_BUTTON) */
|
|
|
|
#endif /* ACPI_BUTTON_H */
|