From: Xiubo Li Date: Thu, 26 Feb 2015 06:58:25 +0000 (+0800) Subject: KVM: Fix indentation in kvm_main.c X-Git-Tag: v5.15~16039^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20e87b72244f922f420d83b0b15b42d17b92acae;p=platform%2Fkernel%2Flinux-starfive.git 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 Signed-off-by: Marcelo Tosatti --- diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 8f76c50..e7d1bf8 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;