diff options
author | Luming Yu <luming.yu@intel.com> | 2005-03-18 18:03:45 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-07-11 23:27:04 -0400 |
commit | fb9802fa59b196d7f90bb3c2e33c555c6bdc4c54 (patch) | |
tree | aca6fd906629c6da124a73b43e6f6c50f81b90b4 /drivers/acpi/toshiba_acpi.c | |
parent | d58da590451cf6ae75379a2ebf96d3afb8d810d8 (diff) |
[ACPI] generic Hot Key support
See Documentation/acpi-hotkey.txt
Use cmdline "acpi_specific_hotkey" to enable
legacy platform specific drivers.
http://bugzilla.kernel.org/show_bug.cgi?id=3887
Signed-off-by: Luming Yu <luming.yu@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/toshiba_acpi.c')
-rw-r--r-- | drivers/acpi/toshiba_acpi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/acpi/toshiba_acpi.c b/drivers/acpi/toshiba_acpi.c index c84997c9f964..bed8e53a5ee8 100644 --- a/drivers/acpi/toshiba_acpi.c +++ b/drivers/acpi/toshiba_acpi.c | |||
@@ -529,6 +529,11 @@ toshiba_acpi_init(void) | |||
529 | 529 | ||
530 | if (acpi_disabled) | 530 | if (acpi_disabled) |
531 | return -ENODEV; | 531 | return -ENODEV; |
532 | |||
533 | if (!acpi_specific_hotkey_enabled){ | ||
534 | printk(MY_INFO "Using generic hotkey driver\n"); | ||
535 | return -ENODEV; | ||
536 | } | ||
532 | /* simple device detection: look for HCI method */ | 537 | /* simple device detection: look for HCI method */ |
533 | if (is_valid_acpi_path(METHOD_HCI_1)) | 538 | if (is_valid_acpi_path(METHOD_HCI_1)) |
534 | method_hci = METHOD_HCI_1; | 539 | method_hci = METHOD_HCI_1; |