diff options
author | Xiubo Li <lixiubo@cmss.chinamobile.com> | 2015-02-26 09:58:25 +0300 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2015-03-10 16:37:44 +0300 |
commit | 20e87b72244f922f420d83b0b15b42d17b92acae (patch) | |
tree | 0b596ec671242d92ba3cd1e8f0ba9d52d74bfa1d /virt | |
parent | b7d409deb9322138d031c2122d1fcba9af9c508c (diff) | |
download | linux-20e87b72244f922f420d83b0b15b42d17b92acae.tar.xz |
KVM: Fix indentation in kvm_main.c
ERROR: code indent should use tabs where possible
+ const struct kvm_io_range *r2)$
WARNING: please, no spaces at the start of a line
+ const struct kvm_io_range *r2)$
This patch fixes this ERROR & WARNING to reduce noise when checking new
patches in kvm_main.c.
Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/kvm_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 8f76c50d1fb4..e7d1bf8f2366 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -2940,7 +2940,7 @@ static void kvm_io_bus_destroy(struct kvm_io_bus *bus) } static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1, - const struct kvm_io_range *r2) + const struct kvm_io_range *r2) { if (r1->addr < r2->addr) return -1; |