Fix warning

Clang warns that this line is missing a comma, which it is.  Add the
comma.

Change-Id: I448427ce97d4f2577690578ee37b1198681be7a6
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/sections/cper-section-ia32x64.h b/sections/cper-section-ia32x64.h
index 59a3e60..c020ff4 100644
--- a/sections/cper-section-ia32x64.h
+++ b/sections/cper-section-ia32x64.h
@@ -44,9 +44,7 @@
 #define IA32X64_CHECK_INFO_OPERATION_TYPES_VALUES                              \
 	(const char *[])                                                       \
 	{                                                                      \
-		"Generic Error", "Generic Read",                               \
-			"Generic Write"                                        \
-			"Data Read",                                           \
+		"Generic Error", "Generic Read", "Generic Write", "Data Read", \
 			"Data Write", "Instruction Fetch", "Prefetch",         \
 			"Eviction", "Snoop"                                    \
 	}