diff options
author | Mark Brown <broonie@kernel.org> | 2014-10-27 07:18:55 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-27 07:18:55 -0400 |
commit | a7339126fdc6d94bc9deba0eaa751622c37b3948 (patch) | |
tree | 39b2e2c4df03471ab764c4415c00727e623ee8c3 /tools | |
parent | 5aa664d63391c14f52264eb08d70f8a074ae249e (diff) | |
parent | cac7f2429872d3733dc3f9915857b1691da2eb2f (diff) |
Merge tag 'v3.18-rc2' into asoc-sgtl5000
Linux 3.18-rc2
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/acpi/os_specific/service_layers/osunixxf.c | 8 | ||||
-rw-r--r-- | tools/power/acpi/tools/acpidump/apdump.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/tools/power/acpi/os_specific/service_layers/osunixxf.c b/tools/power/acpi/os_specific/service_layers/osunixxf.c index 60b58cd18410..7ccb073f8316 100644 --- a/tools/power/acpi/os_specific/service_layers/osunixxf.c +++ b/tools/power/acpi/os_specific/service_layers/osunixxf.c | |||
@@ -122,6 +122,14 @@ static void os_enter_line_edit_mode(void) | |||
122 | { | 122 | { |
123 | struct termios local_term_attributes; | 123 | struct termios local_term_attributes; |
124 | 124 | ||
125 | term_attributes_were_set = 0; | ||
126 | |||
127 | /* STDIN must be a terminal */ | ||
128 | |||
129 | if (!isatty(STDIN_FILENO)) { | ||
130 | return; | ||
131 | } | ||
132 | |||
125 | /* Get and keep the original attributes */ | 133 | /* Get and keep the original attributes */ |
126 | 134 | ||
127 | if (tcgetattr(STDIN_FILENO, &original_term_attributes)) { | 135 | if (tcgetattr(STDIN_FILENO, &original_term_attributes)) { |
diff --git a/tools/power/acpi/tools/acpidump/apdump.c b/tools/power/acpi/tools/acpidump/apdump.c index 53cee781e24e..24d32968802d 100644 --- a/tools/power/acpi/tools/acpidump/apdump.c +++ b/tools/power/acpi/tools/acpidump/apdump.c | |||
@@ -146,7 +146,7 @@ u32 ap_get_table_length(struct acpi_table_header *table) | |||
146 | 146 | ||
147 | if (ACPI_VALIDATE_RSDP_SIG(table->signature)) { | 147 | if (ACPI_VALIDATE_RSDP_SIG(table->signature)) { |
148 | rsdp = ACPI_CAST_PTR(struct acpi_table_rsdp, table); | 148 | rsdp = ACPI_CAST_PTR(struct acpi_table_rsdp, table); |
149 | return (rsdp->length); | 149 | return (acpi_tb_get_rsdp_length(rsdp)); |
150 | } | 150 | } |
151 | 151 | ||
152 | /* Normal ACPI table */ | 152 | /* Normal ACPI table */ |