diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-07-27 17:51:45 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-07-27 17:51:45 -0400 |
commit | 92a18409ba03c1f810b831919596122c60586bc5 (patch) | |
tree | 0eddbcbf9f0f372b0c8bad3fd4e9fc7f351f8df6 /drivers/firmware/efi | |
parent | 64aa90f26c06e1cb2aacfb98a7d0eccfbd6c1a91 (diff) | |
parent | c12f07d17c12193256a99e20c9a0f130fb8f7be8 (diff) |
Merge branch 'acpica'
* acpica: (30 commits)
ACPICA: Add new GPE public interface - acpi_mark_gpe_for_wake.
ACPICA: GPEs: Do not allow enable for GPEs that have no handler(s).
ACPICA: Fix a regression for deletion of Alias() objects.
ACPICA: Update version to 20140627
ACPICA: Tables: Merge DMAR table structure updates
ACPICA: Hardware: back port of a recursive locking fix
ACPICA: utprint/oslibcfs: cleanup - no functional change
ACPICA: Executer: Fix trivial issues in acpi_get_serial_access_bytes()
ACPICA: OSL: Update acpidump to reduce source code differences
ACPICA: acpidump: Reduce freopen() invocations to improve portability
ACPICA: acpidump: Replace file IOs with new APIs to improve portability
ACPICA: acpidump: Remove exit() from generic layer to improve portability
ACPICA: acpidump: Add memory/string OSL usage to improve portability
ACPICA: Common: Enhance acpi_getopt() to improve portability
ACPICA: Common: Enhance cm_get_file_size() to improve portability
ACPICA: Application: Enhance ACPI_USAGE_xxx/ACPI_OPTION with acpi_os_printf() to improve portability
ACPICA: Utilities: Introduce acpi_log_error() to improve portability
ACPICA: Utilities: Add formatted printing APIs
ACPICA: OSL: Add portable file IO to improve portability
ACPICA: OSL: Clean up acpi_os_printf()/acpi_os_vprintf() stubs
...
Diffstat (limited to 'drivers/firmware/efi')
-rw-r--r-- | drivers/firmware/efi/cper.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/firmware/efi/cper.c b/drivers/firmware/efi/cper.c index 1491dd4f08f9..65f2f3fdde24 100644 --- a/drivers/firmware/efi/cper.c +++ b/drivers/firmware/efi/cper.c | |||
@@ -262,7 +262,7 @@ static const char *cper_pcie_port_type_strs[] = { | |||
262 | }; | 262 | }; |
263 | 263 | ||
264 | static void cper_print_pcie(const char *pfx, const struct cper_sec_pcie *pcie, | 264 | static void cper_print_pcie(const char *pfx, const struct cper_sec_pcie *pcie, |
265 | const struct acpi_generic_data *gdata) | 265 | const struct acpi_hest_generic_data *gdata) |
266 | { | 266 | { |
267 | if (pcie->validation_bits & CPER_PCIE_VALID_PORT_TYPE) | 267 | if (pcie->validation_bits & CPER_PCIE_VALID_PORT_TYPE) |
268 | printk("%s""port_type: %d, %s\n", pfx, pcie->port_type, | 268 | printk("%s""port_type: %d, %s\n", pfx, pcie->port_type, |
@@ -298,7 +298,7 @@ static void cper_print_pcie(const char *pfx, const struct cper_sec_pcie *pcie, | |||
298 | } | 298 | } |
299 | 299 | ||
300 | static void cper_estatus_print_section( | 300 | static void cper_estatus_print_section( |
301 | const char *pfx, const struct acpi_generic_data *gdata, int sec_no) | 301 | const char *pfx, const struct acpi_hest_generic_data *gdata, int sec_no) |
302 | { | 302 | { |
303 | uuid_le *sec_type = (uuid_le *)gdata->section_type; | 303 | uuid_le *sec_type = (uuid_le *)gdata->section_type; |
304 | __u16 severity; | 304 | __u16 severity; |
@@ -344,9 +344,9 @@ err_section_too_small: | |||
344 | } | 344 | } |
345 | 345 | ||
346 | void cper_estatus_print(const char *pfx, | 346 | void cper_estatus_print(const char *pfx, |
347 | const struct acpi_generic_status *estatus) | 347 | const struct acpi_hest_generic_status *estatus) |
348 | { | 348 | { |
349 | struct acpi_generic_data *gdata; | 349 | struct acpi_hest_generic_data *gdata; |
350 | unsigned int data_len, gedata_len; | 350 | unsigned int data_len, gedata_len; |
351 | int sec_no = 0; | 351 | int sec_no = 0; |
352 | char newpfx[64]; | 352 | char newpfx[64]; |
@@ -359,7 +359,7 @@ void cper_estatus_print(const char *pfx, | |||
359 | "and requires no further action"); | 359 | "and requires no further action"); |
360 | printk("%s""event severity: %s\n", pfx, cper_severity_str(severity)); | 360 | printk("%s""event severity: %s\n", pfx, cper_severity_str(severity)); |
361 | data_len = estatus->data_length; | 361 | data_len = estatus->data_length; |
362 | gdata = (struct acpi_generic_data *)(estatus + 1); | 362 | gdata = (struct acpi_hest_generic_data *)(estatus + 1); |
363 | snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP); | 363 | snprintf(newpfx, sizeof(newpfx), "%s%s", pfx, INDENT_SP); |
364 | while (data_len >= sizeof(*gdata)) { | 364 | while (data_len >= sizeof(*gdata)) { |
365 | gedata_len = gdata->error_data_length; | 365 | gedata_len = gdata->error_data_length; |
@@ -371,10 +371,10 @@ void cper_estatus_print(const char *pfx, | |||
371 | } | 371 | } |
372 | EXPORT_SYMBOL_GPL(cper_estatus_print); | 372 | EXPORT_SYMBOL_GPL(cper_estatus_print); |
373 | 373 | ||
374 | int cper_estatus_check_header(const struct acpi_generic_status *estatus) | 374 | int cper_estatus_check_header(const struct acpi_hest_generic_status *estatus) |
375 | { | 375 | { |
376 | if (estatus->data_length && | 376 | if (estatus->data_length && |
377 | estatus->data_length < sizeof(struct acpi_generic_data)) | 377 | estatus->data_length < sizeof(struct acpi_hest_generic_data)) |
378 | return -EINVAL; | 378 | return -EINVAL; |
379 | if (estatus->raw_data_length && | 379 | if (estatus->raw_data_length && |
380 | estatus->raw_data_offset < sizeof(*estatus) + estatus->data_length) | 380 | estatus->raw_data_offset < sizeof(*estatus) + estatus->data_length) |
@@ -384,9 +384,9 @@ int cper_estatus_check_header(const struct acpi_generic_status *estatus) | |||
384 | } | 384 | } |
385 | EXPORT_SYMBOL_GPL(cper_estatus_check_header); | 385 | EXPORT_SYMBOL_GPL(cper_estatus_check_header); |
386 | 386 | ||
387 | int cper_estatus_check(const struct acpi_generic_status *estatus) | 387 | int cper_estatus_check(const struct acpi_hest_generic_status *estatus) |
388 | { | 388 | { |
389 | struct acpi_generic_data *gdata; | 389 | struct acpi_hest_generic_data *gdata; |
390 | unsigned int data_len, gedata_len; | 390 | unsigned int data_len, gedata_len; |
391 | int rc; | 391 | int rc; |
392 | 392 | ||
@@ -394,7 +394,7 @@ int cper_estatus_check(const struct acpi_generic_status *estatus) | |||
394 | if (rc) | 394 | if (rc) |
395 | return rc; | 395 | return rc; |
396 | data_len = estatus->data_length; | 396 | data_len = estatus->data_length; |
397 | gdata = (struct acpi_generic_data *)(estatus + 1); | 397 | gdata = (struct acpi_hest_generic_data *)(estatus + 1); |
398 | while (data_len >= sizeof(*gdata)) { | 398 | while (data_len >= sizeof(*gdata)) { |
399 | gedata_len = gdata->error_data_length; | 399 | gedata_len = gdata->error_data_length; |
400 | if (gedata_len > data_len - sizeof(*gdata)) | 400 | if (gedata_len > data_len - sizeof(*gdata)) |