Skip to content

Commit

Permalink
hv: treewide: fix 'Empty parameter list to procedure/function'
Browse files Browse the repository at this point in the history
Use func(void) rather than func() for the function declaration and
definition based on MISRAC requirement.

Tracked-On: #861
Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
  • Loading branch information
shiqingg authored and lijinxia committed Aug 21, 2018
1 parent 7a4dcfc commit 1017d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypervisor/include/arch/x86/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ bool cpu_has_cap(uint32_t bit);
void load_cpu_state_data(void);
void bsp_boot_init(void);
void cpu_secondary_init(void);
void start_cpus();
void stop_cpus();
void start_cpus(void);
void stop_cpus(void);
void wait_sync_change(uint64_t *sync, uint64_t wake_sync);

/* Read control register */
Expand Down

0 comments on commit 1017d91

Please sign in to comment.