diff mbox series

[PULL,07/17] target/ppc: Remove extra space from s128 field in ppc_vsr_t

Message ID 20220920194202.82615-8-danielhb413@gmail.com (mailing list archive)
State New, archived
Headers show
Series [PULL,01/17] target/ppc: Add HASHKEYR and HASHPKEYR SPRs | expand

Commit Message

Daniel Henrique Barboza Sept. 20, 2022, 7:41 p.m. UTC
From: Víctor Colombo <victor.colombo@eldorado.org.br>

Very trivial rogue space removal. There are two spaces between Int128
and s128 in ppc_vsr_t struct, where it should be only one.

Signed-off-by: Víctor Colombo <victor.colombo@eldorado.org.br>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20220906125523.38765-2-victor.colombo@eldorado.org.br>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
 target/ppc/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
index 4551d81b5f..602ea77914 100644
--- a/target/ppc/cpu.h
+++ b/target/ppc/cpu.h
@@ -246,7 +246,7 @@  typedef union _ppc_vsr_t {
 #ifdef CONFIG_INT128
     __uint128_t u128;
 #endif
-    Int128  s128;
+    Int128 s128;
 } ppc_vsr_t;
 
 typedef ppc_vsr_t ppc_avr_t;