diff options
author | Michal Marek <mmarek@suse.com> | 2015-10-15 16:16:28 -0400 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2015-10-22 17:01:49 -0400 |
commit | 5fdf876d30ce7c9b63045b3db8374912ab9b262c (patch) | |
tree | 8ed0d514011076ffd57dc55ec3d2433b90745bdd /include/kvm | |
parent | db85c55f1b01b155332058753854d897e965d67f (diff) |
KVM: arm: Do not indent the arguments of DECLARE_BITMAP
Besides being a coding style issue, it confuses make tags:
ctags: Warning: include/kvm/arm_vgic.h:307: null expansion of name pattern "\1"
ctags: Warning: include/kvm/arm_vgic.h:308: null expansion of name pattern "\1"
ctags: Warning: include/kvm/arm_vgic.h:309: null expansion of name pattern "\1"
ctags: Warning: include/kvm/arm_vgic.h:317: null expansion of name pattern "\1"
Cc: kvmarm@lists.cs.columbia.edu
Signed-off-by: Michal Marek <mmarek@suse.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'include/kvm')
-rw-r--r-- | include/kvm/arm_vgic.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h index 7bc5d0224ab0..8065801a1847 100644 --- a/include/kvm/arm_vgic.h +++ b/include/kvm/arm_vgic.h | |||
@@ -299,9 +299,9 @@ struct vgic_cpu { | |||
299 | u8 *vgic_irq_lr_map; | 299 | u8 *vgic_irq_lr_map; |
300 | 300 | ||
301 | /* Pending/active/both interrupts on this VCPU */ | 301 | /* Pending/active/both interrupts on this VCPU */ |
302 | DECLARE_BITMAP( pending_percpu, VGIC_NR_PRIVATE_IRQS); | 302 | DECLARE_BITMAP(pending_percpu, VGIC_NR_PRIVATE_IRQS); |
303 | DECLARE_BITMAP( active_percpu, VGIC_NR_PRIVATE_IRQS); | 303 | DECLARE_BITMAP(active_percpu, VGIC_NR_PRIVATE_IRQS); |
304 | DECLARE_BITMAP( pend_act_percpu, VGIC_NR_PRIVATE_IRQS); | 304 | DECLARE_BITMAP(pend_act_percpu, VGIC_NR_PRIVATE_IRQS); |
305 | 305 | ||
306 | /* Pending/active/both shared interrupts, dynamically sized */ | 306 | /* Pending/active/both shared interrupts, dynamically sized */ |
307 | unsigned long *pending_shared; | 307 | unsigned long *pending_shared; |
@@ -309,7 +309,7 @@ struct vgic_cpu { | |||
309 | unsigned long *pend_act_shared; | 309 | unsigned long *pend_act_shared; |
310 | 310 | ||
311 | /* Bitmap of used/free list registers */ | 311 | /* Bitmap of used/free list registers */ |
312 | DECLARE_BITMAP( lr_used, VGIC_V2_MAX_LRS); | 312 | DECLARE_BITMAP(lr_used, VGIC_V2_MAX_LRS); |
313 | 313 | ||
314 | /* Number of list registers on this CPU */ | 314 | /* Number of list registers on this CPU */ |
315 | int nr_lr; | 315 | int nr_lr; |