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

@@ -30,7 +30,7 @@ struct shell {
};
/* Shell Command Function */
typedef int (*shell_cmd_fn_t)(int, char **);
typedef int (*shell_cmd_fn_t)(int argc, char **argv);
/* Shell Command */
struct shell_cmd {