summaryrefslogtreecommitdiffstats
path: root/include/acpi/button.h
diff options
context:
space:
mode:
authorJesse Barnes2009-09-11 00:28:02 +0200
committerEric Anholt2009-09-11 01:09:11 +0200
commit7e12715ecc47a8a59154afe2746e48998225bb69 (patch)
tree308e53b58027772bd114585f57c4180eb89239a7 /include/acpi/button.h
parentAdd G33 series in VGA hotplug support category (diff)
downloadkernel-qcow2-linux-7e12715ecc47a8a59154afe2746e48998225bb69.tar.gz
kernel-qcow2-linux-7e12715ecc47a8a59154afe2746e48998225bb69.tar.xz
kernel-qcow2-linux-7e12715ecc47a8a59154afe2746e48998225bb69.zip
ACPI button: provide lid status functions
Some drivers need to know when a lid event occurs and get the current status. This can be useful for when a platform firmware clobbers some hardware state at lid time, and a driver needs to restore things when the lid is opened again. Acked-by: Matthew Garrett <mjg59@srcf.ucam.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'include/acpi/button.h')
-rw-r--r--include/acpi/button.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/acpi/button.h b/include/acpi/button.h
new file mode 100644
index 000000000000..bb643a79d651
--- /dev/null
+++ b/include/acpi/button.h
@@ -0,0 +1,10 @@
+#ifndef ACPI_BUTTON_H
+#define ACPI_BUTTON_H
+
+#include <linux/notifier.h>
+
+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);
+
+#endif /* ACPI_BUTTON_H */