diff options
author | Xiubo Li <lixiubo@cmss.chinamobile.com> | 2015-02-26 01:58:25 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2015-03-10 09:37:44 -0400 |
commit | 20e87b72244f922f420d83b0b15b42d17b92acae (patch) | |
tree | 0b596ec671242d92ba3cd1e8f0ba9d52d74bfa1d /virt | |
parent | b7d409deb9322138d031c2122d1fcba9af9c508c (diff) |
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) | |||
2940 | } | 2940 | } |
2941 | 2941 | ||
2942 | static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1, | 2942 | static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1, |
2943 | const struct kvm_io_range *r2) | 2943 | const struct kvm_io_range *r2) |
2944 | { | 2944 | { |
2945 | if (r1->addr < r2->addr) | 2945 | if (r1->addr < r2->addr) |
2946 | return -1; | 2946 | return -1; |