summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/sysfs.c
diff options
context:
space:
mode:
authorLv Zheng2014-01-24 01:49:51 +0100
committerRafael J. Wysocki2014-01-27 23:59:08 +0100
commit481c13814a4ecc8305fb7c871067a73cafd09d07 (patch)
tree9f5fe176f0201a7490f1bcbdb6e718e7a6b45183 /drivers/acpi/sysfs.c
parentACPICA: Update version to 20131218. (diff)
downloadkernel-qcow2-linux-481c13814a4ecc8305fb7c871067a73cafd09d07.tar.gz
kernel-qcow2-linux-481c13814a4ecc8305fb7c871067a73cafd09d07.tar.xz
kernel-qcow2-linux-481c13814a4ecc8305fb7c871067a73cafd09d07.zip
ACPICA: Remove bool usage from ACPICA.
The use of "bool" is not safe for ACPICA code where it is originally using a "BOOLEAN" defined as "unsigned char". This patch removes the only "bool" usage from kernel source tree to reduce the source code differences between Linux and ACPICA upstream. This patch is required by future acpidump release automation. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/sysfs.c')
-rw-r--r--drivers/acpi/sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c
index 6dbc3ca45223..3e0b54fb075b 100644
--- a/drivers/acpi/sysfs.c
+++ b/drivers/acpi/sysfs.c
@@ -226,7 +226,7 @@ module_param_call(trace_state, param_set_trace_state, param_get_trace_state,
/* /sys/modules/acpi/parameters/aml_debug_output */
module_param_named(aml_debug_output, acpi_gbl_enable_aml_debug_object,
- bool, 0644);
+ byte, 0644);
MODULE_PARM_DESC(aml_debug_output,
"To enable/disable the ACPI Debug Object output.");