acrn-hypervisor/hypervisor/arch/x86/guest
Xiangyang Wu 8e2c730043 HV:VLAPIC:add suffix "_fn" for function pointer
For some function pointer type, its name is identical with
variable name in the same scope. This MISRA C violation is
detected.

Naming convention rule:If the type is function
pointer, its name needs suffix "_fn".

The following udpates are made:
*apicv_set_intr_ready-->*apicv_set_intr_ready_fn
*apicv_pending_intr-->*apicv_pending_intr_fn
*apicv_set_tmr-->*apicv_set_tmr_fn
*apicv_batch_set_tmr-->*apicv_batch_set_tmr_fn
*apicv_intr_accepted-->*apicv_intr_accepted_fn
*apicv_post_intr-->*apicv_post_intr_fn
*enable_x2apic_mode-->*enable_x2apic_mode_fn

V1-->V2:
	Update function pointer when it is used as calling
	since no need to dereference a function pointer
	before calling.

Signed-off-by: Xiangyang Wu <xiangyang.wu@linux.intel.com>
Reviewed-by: Junjie Mao <junjie.mao@intel.com>
2018-07-31 10:33:22 +08:00
..
guest.c HV: Rename functions beginning with "_" 2018-07-30 10:11:54 +08:00
instr_emul_wrapper.c HV:INSTR_EMUL:Rename struct vie, vie_op, and emul_ctxt 2018-07-30 10:16:36 +08:00
instr_emul_wrapper.h HV:INSTR_EMUL:Rename struct vie, vie_op, and emul_ctxt 2018-07-30 10:16:36 +08:00
instr_emul.c HV:INSTR_EMUL:Rename struct vie, vie_op, and emul_ctxt 2018-07-30 10:16:36 +08:00
instr_emul.h HV:INSTR_EMUL:Rename struct vie, vie_op, and emul_ctxt 2018-07-30 10:16:36 +08:00
pm.c HV: Fix new MISRAC violations for brackets 2018-07-16 11:02:38 +08:00
ucode.c HV: Bracket for the same level of precendence 2018-07-24 10:10:39 +08:00
vcpu.c HV: io: refine state transitions of VHM requests 2018-07-31 10:22:03 +08:00
vioapic.c HV: io: refine state transitions of VHM requests 2018-07-31 10:22:03 +08:00
vlapic_priv.h HV:VLAPIC:add suffix "_fn" for function pointer 2018-07-31 10:33:22 +08:00
vlapic.c HV:VLAPIC:add suffix "_fn" for function pointer 2018-07-31 10:33:22 +08:00
vm.c HV:treewide:rename struct pic and iommu_domain 2018-07-31 10:33:22 +08:00
vmcall.c HV: io: add post-work for PCICFG and WP requests 2018-07-31 10:22:03 +08:00
vmsr.c HV:treewide:fix "Attempt to change parameter passed by value" 2018-07-26 09:35:52 +08:00
vpic.c HV:treewide:rename struct pic and iommu_domain 2018-07-31 10:33:22 +08:00