[PATCH] acpica: utdecode: fix missing comma in array declaration AcpiGbl_GenericNotify
Colin King
colin.king at canonical.com
Tue Feb 19 08:40:31 UTC 2019
From: Colin Ian King <colin.king at canonical.com>
There is a missing comma between strings on the array declaration. Fix
this by adding the missing comma.
Fixes: ACPICA 205ac8fc7210 ("ACPI 6.3: add Error Disconnect Recover Notification value")
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
Note, I've requested this fix to be applied to the upstream project, but it's not
yet been applied.
https://github.com/acpica/acpica/pull/448
---
src/acpica/source/components/utilities/utdecode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/acpica/source/components/utilities/utdecode.c b/src/acpica/source/components/utilities/utdecode.c
index e470dfc4..443a6dd7 100644
--- a/src/acpica/source/components/utilities/utdecode.c
+++ b/src/acpica/source/components/utilities/utdecode.c
@@ -632,7 +632,7 @@ static const char *AcpiGbl_GenericNotify[ACPI_GENERIC_NOTIFY_MAX + 1]
/* 0B */ "System Locality Update",
/* 0C */ "Reserved (was previously Shutdown Request)", /* Reserved in ACPI 6.0 */
/* 0D */ "System Resource Affinity Update",
- /* 0E */ "Heterogeneous Memory Attributes Update" /* ACPI 6.2 */
+ /* 0E */ "Heterogeneous Memory Attributes Update", /* ACPI 6.2 */
/* 0F */ "Error Disconnect Recover" /* ACPI 6.3 */
};
--
2.20.1
More information about the fwts-devel
mailing list