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 <koml...@google.com> --- include/exec/memattrs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, -- 2.44.0.rc0.258.g7320e95886-goog