acrn-hypervisor/hypervisor/include
Shiqing Gao 4360235edf hv: treewide: fix 'Macro parameter not in brackets'
Add the brackets for Macro parameter to avoid the unintentional
mistakes.

A simple example that may cause mistakes:
        #define minus(x) -x
When the following call is made,
        z = minus(a-b)
it becomes:
        z = -a-b;
where "-a - b" is equivalent to "(-a) - b" rather than "- (a - b)", as
expected.

v2 -> v3:
 * convert DMAR_WAIT_COMPLETION to inline function
 * remove the macro PIC_PIN_FOREACH and implement the well-formed
   for loop in each case
 * replace __CPP_STRING with STRINGIFY and remove the unused CPP_STRING

v1 -> v2:
 * Remove some changes to function like macro since MISRA-C requires to
   use inline functions if it is possible.
   These MACRO brackets violations will be fixed together when fixing
   other issues related to function like macro.

Tracked-On: #861
Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
2018-09-07 10:22:00 +08:00
..
arch/x86 hv: treewide: fix 'Macro parameter not in brackets' 2018-09-07 10:22:00 +08:00
common hv: treewide: fix 'Macro parameter not in brackets' 2018-09-07 10:22:00 +08:00
debug hv: treewide: fix 'Macro parameter not in brackets' 2018-09-07 10:22:00 +08:00
dm/vpci HV: VPCI coding style fix 2018-09-03 11:26:30 +08:00
lib hv: treewide: fix 'Macro parameter not in brackets' 2018-09-07 10:22:00 +08:00
public hv: add a hypercall for the hypervisor NPK log 2018-08-23 11:09:25 +08:00
hv_debug.h hv:Replace vuart pointer with instance in structure vm 2018-08-27 09:49:12 +08:00
hv_lib.h license: Replace license text with SPDX tag 2018-06-01 10:43:06 +08:00
hypervisor.h hv: mmu: revisit mmu modify page table attributes 2018-07-19 11:11:32 +08:00