diff options
| author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-06-05 12:40:43 -0400 |
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2017-06-05 13:42:02 -0400 |
| commit | 5b53696a30d5f52d35fec21c1da1e52520225efe (patch) | |
| tree | 8586463d659e08b969c8c4004def3f1f8a866e8e | |
| parent | 41c8bdb3ab10c1fefcac61d081e2fd9aaf8694b8 (diff) | |
ACPI / APEI: Switch to use new generic UUID API
There are new types and helpers that are supposed to be used in new code.
As a preparation to get rid of legacy types and API functions do
the conversion here.
Cc: Borislav Petkov <bp@suse.de>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
| -rw-r--r-- | drivers/acpi/apei/ghes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index d0855c09f32f..980515e029fa 100644 --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c | |||
| @@ -431,12 +431,13 @@ static void ghes_do_proc(struct ghes *ghes, | |||
| 431 | { | 431 | { |
| 432 | int sev, sec_sev; | 432 | int sev, sec_sev; |
| 433 | struct acpi_hest_generic_data *gdata; | 433 | struct acpi_hest_generic_data *gdata; |
| 434 | guid_t *sec_type; | ||
| 434 | 435 | ||
| 435 | sev = ghes_severity(estatus->error_severity); | 436 | sev = ghes_severity(estatus->error_severity); |
| 436 | apei_estatus_for_each_section(estatus, gdata) { | 437 | apei_estatus_for_each_section(estatus, gdata) { |
| 438 | sec_type = (guid_t *)gdata->section_type; | ||
| 437 | sec_sev = ghes_severity(gdata->error_severity); | 439 | sec_sev = ghes_severity(gdata->error_severity); |
| 438 | if (!uuid_le_cmp(*(uuid_le *)gdata->section_type, | 440 | if (guid_equal(sec_type, &CPER_SEC_PLATFORM_MEM)) { |
| 439 | CPER_SEC_PLATFORM_MEM)) { | ||
| 440 | struct cper_sec_mem_err *mem_err; | 441 | struct cper_sec_mem_err *mem_err; |
| 441 | mem_err = (struct cper_sec_mem_err *)(gdata+1); | 442 | mem_err = (struct cper_sec_mem_err *)(gdata+1); |
| 442 | ghes_edac_report_mem_error(ghes, sev, mem_err); | 443 | ghes_edac_report_mem_error(ghes, sev, mem_err); |
| @@ -445,8 +446,7 @@ static void ghes_do_proc(struct ghes *ghes, | |||
| 445 | ghes_handle_memory_failure(gdata, sev); | 446 | ghes_handle_memory_failure(gdata, sev); |
| 446 | } | 447 | } |
| 447 | #ifdef CONFIG_ACPI_APEI_PCIEAER | 448 | #ifdef CONFIG_ACPI_APEI_PCIEAER |
| 448 | else if (!uuid_le_cmp(*(uuid_le *)gdata->section_type, | 449 | else if (guid_equal(sec_type, &CPER_SEC_PCIE)) { |
| 449 | CPER_SEC_PCIE)) { | ||
| 450 | struct cper_sec_pcie *pcie_err; | 450 | struct cper_sec_pcie *pcie_err; |
| 451 | pcie_err = (struct cper_sec_pcie *)(gdata+1); | 451 | pcie_err = (struct cper_sec_pcie *)(gdata+1); |
| 452 | if (sev == GHES_SEV_RECOVERABLE && | 452 | if (sev == GHES_SEV_RECOVERABLE && |
