ACPI: thinkpad-acpi: claim tpacpi as an official short handle (v1.1)
Unfortunately, a lot of stuff in the kernel has size limitations, so "thinkpad-acpi" ends up eating up too much real estate. We were using "tpacpi" in symbols already, but this shorthand was not visible to userland. Document that the driver will use tpacpi as a short hand where necessary, and use it to name the kernel thread for NVRAM polling (now named "ktpacpi_nvramd"). Also, register a module alias with the shorthand. One can refer to the module using the shorthand name. Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
committed by
Len Brown
parent
e11aecf137
commit
95e57ab2cb
@@ -133,8 +133,11 @@ enum {
|
||||
#define TPACPI_PROC_DIR "ibm"
|
||||
#define TPACPI_ACPI_EVENT_PREFIX "ibm"
|
||||
#define TPACPI_DRVR_NAME TPACPI_FILE
|
||||
#define TPACPI_DRVR_SHORTNAME "tpacpi"
|
||||
#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
|
||||
|
||||
#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
|
||||
|
||||
#define TPACPI_MAX_ACPI_ARGS 3
|
||||
|
||||
/* Debugging */
|
||||
@@ -1523,8 +1526,7 @@ static void hotkey_poll_setup(int may_warn)
|
||||
(tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
|
||||
if (!tpacpi_hotkey_task) {
|
||||
tpacpi_hotkey_task = kthread_run(hotkey_kthread,
|
||||
NULL,
|
||||
TPACPI_FILE "d");
|
||||
NULL, TPACPI_NVRAM_KTHREAD_NAME);
|
||||
if (IS_ERR(tpacpi_hotkey_task)) {
|
||||
tpacpi_hotkey_task = NULL;
|
||||
printk(TPACPI_ERR
|
||||
@@ -6316,6 +6318,8 @@ static int __init thinkpad_acpi_module_init(void)
|
||||
/* Please remove this in year 2009 */
|
||||
MODULE_ALIAS("ibm_acpi");
|
||||
|
||||
MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
|
||||
|
||||
/*
|
||||
* DMI matching for module autoloading
|
||||
*
|
||||
|
Reference in New Issue
Block a user