Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge 'acpi-2.6.12' branch into to-akpm

Len Brown cb220c1a 1dadb3da

+10 -5
+2 -2
Documentation/acpi-hotkey.txt
··· 34 34 created. Please use command "cat /proc/acpi/hotkey/polling_method" 35 35 to retrieve it. 36 36 37 - Note: Use cmdline "acpi_specific_hotkey" to enable legacy platform 38 - specific drivers. 37 + Note: Use cmdline "acpi_generic_hotkey" to over-ride 38 + platform-specific with generic driver.
+5
Documentation/kernel-parameters.txt
··· 159 159 160 160 acpi_fake_ecdt [HW,ACPI] Workaround failure due to BIOS lacking ECDT 161 161 162 + acpi_generic_hotkey [HW,ACPI] 163 + Allow consolidated generic hotkey driver to 164 + over-ride platform specific driver. 165 + See also Documentation/acpi-hotkey.txt. 166 + 162 167 ad1816= [HW,OSS] 163 168 Format: <io>,<irq>,<dma>,<dma2> 164 169 See also Documentation/sound/oss/AD1816.
+3 -3
drivers/acpi/osl.c
··· 67 67 extern char line_buf[80]; 68 68 #endif /*ENABLE_DEBUGGER */ 69 69 70 - int acpi_specific_hotkey_enabled; 70 + int acpi_specific_hotkey_enabled = TRUE; 71 71 EXPORT_SYMBOL(acpi_specific_hotkey_enabled); 72 72 73 73 static unsigned int acpi_irq_irq; ··· 1070 1070 1071 1071 int __init acpi_hotkey_setup(char *str) 1072 1072 { 1073 - acpi_specific_hotkey_enabled = TRUE; 1073 + acpi_specific_hotkey_enabled = FALSE; 1074 1074 return 1; 1075 1075 } 1076 1076 1077 - __setup("acpi_specific_hotkey", acpi_hotkey_setup); 1077 + __setup("acpi_generic_hotkey", acpi_hotkey_setup); 1078 1078 1079 1079 /* 1080 1080 * max_cstate is defined in the base kernel so modules can