[PATCH v2 5/5] softmmu: code indent should never use tabs

chaihaoyu posted 5 patches 5 years ago
Maintainers: Alistair Francis <alistair.francis@wdc.com>, David Gibson <david@gibson.dropbear.id.au>, "Gonglei (Arei)" <arei.gonglei@huawei.com>, Eduardo Habkost <ehabkost@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, "Daniel P. Berrangé" <berrange@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>
[PATCH v2 5/5] softmmu: code indent should never use tabs
Posted by chaihaoyu 5 years ago
This patch fixes error messages found by checkpatch.pl:
code indent should never use tabs

Signed-off-by: Haoyu Chai <chaihaoyu1@huawei.com>

---
 softmmu/physmem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/softmmu/physmem.c b/softmmu/physmem.c
index 43e37660c7..7aed899e3f 100644
--- a/softmmu/physmem.c
+++ b/softmmu/physmem.c
@@ -3273,7 +3273,7 @@ int64_t address_space_cache_init(MemoryRegionCache *cache,
      * cache->xlat and the end of the section.
      */
     diff = int128_sub(cache->mrs.size,
-		      int128_make64(cache->xlat - cache->mrs.offset_within_region));
+                int128_make64(cache->xlat - cache->mrs.offset_within_region));
     l = int128_get64(int128_min(diff, int128_make64(l)));

     mr = cache->mrs.mr;
-- 
2.29.1.59.gf9b6481aed