diff mbox series

[kvm-unit-tests,v1,07/10] s390x: cpumodel: list tcg_fail explicitly

Message ID 20231106125352.859992-8-nrb@linux.ibm.com (mailing list archive)
State New, archived
Headers show
Series RFC: Add clang-format and kerneldoc check | expand

Commit Message

Nico Boehr Nov. 6, 2023, 12:51 p.m. UTC
This makes the list more readable.

Signed-off-by: Nico Boehr <nrb@linux.ibm.com>
---
 s390x/cpumodel.c | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)
diff mbox series

Patch

diff --git a/s390x/cpumodel.c b/s390x/cpumodel.c
index 5c0b73e0f9fe..5734312b102d 100644
--- a/s390x/cpumodel.c
+++ b/s390x/cpumodel.c
@@ -84,28 +84,28 @@  static struct {
 	bool expected_tcg_fail;
 } dep[] = {
 	/* from SA22-7832-11 4-98 facility indications */
-	{   4,   3 },
-	{   5,   3 },
-	{   5,   4 },
-	{  19,  18 },
+	{   4,   3, false },
+	{   5,   3, false },
+	{   5,   4, false },
+	{  19,  18, false },
 	{  37,  42, true },  /* TCG does not have DFP and won't get it soon */
-	{  43,  42 },
-	{  73,  49 },
-	{ 134, 129 },
-	{ 135, 129 },
-	{ 139,  25 },
-	{ 139,  28 },
-	{ 146,  76 },
+	{  43,  42, false },
+	{  73,  49, false },
+	{ 134, 129, false },
+	{ 135, 129, false },
+	{ 139,  25, false },
+	{ 139,  28, false },
+	{ 146,  76, false },
 	/* indirectly documented in description */
-	{  78,   8 },  /* EDAT */
+	{  78,   8, false },  /* EDAT */
 	/* new dependencies from gen15 */
-	{  61,  45 },
-	{ 148, 129 },
-	{ 148, 135 },
-	{ 152, 129 },
-	{ 152, 134 },
-	{ 155,  76 },
-	{ 155,  77 },
+	{  61,  45, false },
+	{ 148, 129, false },
+	{ 148, 135, false },
+	{ 152, 129, false },
+	{ 152, 134, false },
+	{ 155,  76, false },
+	{ 155,  77, false },
 };
 
 int main(void)