hv: treewide: fix 'Procedure parameter has a type but no identifier'

Add the parameter identifier for typedef function pointer.

Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
Shiqing Gao
2018-08-02 09:29:35 +08:00
committed by lijinxia
parent c27e25052b
commit fd0c9187ef
5 changed files with 11 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
#ifndef TIMER_H
#define TIMER_H
typedef int (*timer_handle_t)(void *);
typedef int (*timer_handle_t)(void *data);
enum tick_mode {
TICK_MODE_ONESHOT = 0,