coding guidelines: add to function prototypes form named parameters
Function types shall be in prototype form with named parameters Found as a coding guideline violation (MISRA R8.2) by static coding scanning tool. Signed-off-by: Maksim Masalski <maksim.masalski@intel.com>
This commit is contained in:
parent
366de7a890
commit
78ba2ec830
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@ struct multiboot_info {
|
|||
|
||||
extern struct multiboot_info multiboot_info;
|
||||
|
||||
extern void z_multiboot_init(struct multiboot_info *);
|
||||
extern void z_multiboot_init(struct multiboot_info *info_pa);
|
||||
|
||||
/*
|
||||
* the mmap_addr field points to a series of entries of the following form.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue