diff mbox series

[RFC,2/5] memattrs: Fix target_tlb_bit whitespace

Message ID 20240227222417.929367-3-komlodi@google.com (mailing list archive)
State New, archived
Headers show
Series memattrs: target/arm: add user-defined and requester ID memattrs | expand

Commit Message

Joe Komlodi Feb. 27, 2024, 10:24 p.m. UTC
checkpatch.pl doesn't like these spaces around the colon, so we may as
well fix it up.

No functional change.

Signed-off-by: Joe Komlodi <komlodi@google.com>
---
 include/exec/memattrs.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/include/exec/memattrs.h b/include/exec/memattrs.h
index d04170aa27..942b721be8 100644
--- a/include/exec/memattrs.h
+++ b/include/exec/memattrs.h
@@ -61,9 +61,9 @@  typedef struct MemTxAttrs {
      * and has unused bits.  These fields will be read by target-specific
      * helpers using env->iotlb[mmu_idx][tlb_index()].attrs.target_tlb_bitN.
      */
-    unsigned int target_tlb_bit0 : 1;
-    unsigned int target_tlb_bit1 : 1;
-    unsigned int target_tlb_bit2 : 1;
+    unsigned int target_tlb_bit0:1;
+    unsigned int target_tlb_bit1:1;
+    unsigned int target_tlb_bit2:1;
 } MemTxAttrs;
 
 /* Bus masters which don't specify any attributes will get this,