hv: include: fix 'Unused procedure parameter'

MISRA-C requires that there should be no unused parameters in
functions.

This patch removes the unused parameters that is not being used
unconditionally.

Tracked-On: #861
Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Shiqing Gao
2018-09-26 14:54:31 +08:00
committed by lijinxia
parent 68ce114b43
commit 026ae83bd5
8 changed files with 14 additions and 18 deletions

View File

@@ -69,7 +69,7 @@ static void do_copy_earlylog(struct shared_buf *dst_sbuf,
}
}
void init_logmsg(__unused uint32_t mem_size, uint32_t flags)
void init_logmsg(uint32_t flags)
{
uint16_t pcpu_id;