diff options
author | Len Brown <len.brown@intel.com> | 2009-06-24 07:22:20 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-06-24 07:22:20 +0200 |
commit | 57599cc997b81a7c4f764693a7316886a72067fe (patch) | |
tree | 2e5cd27682614c88ec72009f9605062ada6eae25 /include | |
parent | Merge branches 'acerhdf', 'acpi-pci-bind', 'bjorn-pci-root', 'bugzilla-12904'... (diff) | |
parent | ACPI: battery: fix CONFIG_ACPI_PROCFS_POWER=n build warning (diff) | |
download | linux-57599cc997b81a7c4f764693a7316886a72067fe.tar.xz linux-57599cc997b81a7c4f764693a7316886a72067fe.zip |
Merge branch 'bjorn-notify' into release
Conflicts:
drivers/platform/x86/eeepc-laptop.c
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/acpi_bus.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index bf1f43bd9016..c65e4ce6c3af 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h @@ -114,10 +114,13 @@ struct acpi_device_ops { acpi_op_notify notify; }; +#define ACPI_DRIVER_ALL_NOTIFY_EVENTS 0x1 /* system AND device events */ + struct acpi_driver { char name[80]; char class[80]; const struct acpi_device_id *ids; /* Supported Hardware IDs */ + unsigned int flags; struct acpi_device_ops ops; struct device_driver drv; struct module *owner; |