mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-26 07:21:37 +00:00
hv: treewide: fix 'Empty parameter list to procedure/function'
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>
This commit is contained in:
parent
7a4dcfcc1a
commit
1017d91aa6
@ -331,8 +331,8 @@ bool cpu_has_cap(uint32_t bit);
|
|||||||
void load_cpu_state_data(void);
|
void load_cpu_state_data(void);
|
||||||
void bsp_boot_init(void);
|
void bsp_boot_init(void);
|
||||||
void cpu_secondary_init(void);
|
void cpu_secondary_init(void);
|
||||||
void start_cpus();
|
void start_cpus(void);
|
||||||
void stop_cpus();
|
void stop_cpus(void);
|
||||||
void wait_sync_change(uint64_t *sync, uint64_t wake_sync);
|
void wait_sync_change(uint64_t *sync, uint64_t wake_sync);
|
||||||
|
|
||||||
/* Read control register */
|
/* Read control register */
|
||||||
|
Loading…
Reference in New Issue
Block a user