mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
module: Declare functions as foo(void) instead of just foo()
This commit is contained in:
parent
becba0dd09
commit
9d8e74c1bc
@ -91,7 +91,7 @@ static int module_topological_order(struct module *module,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int iwd_modules_init()
|
int iwd_modules_init(void)
|
||||||
{
|
{
|
||||||
struct iwd_module_desc *desc;
|
struct iwd_module_desc *desc;
|
||||||
struct iwd_module_depends *dep;
|
struct iwd_module_depends *dep;
|
||||||
@ -162,7 +162,7 @@ int iwd_modules_init()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void iwd_modules_exit()
|
void iwd_modules_exit(void)
|
||||||
{
|
{
|
||||||
struct iwd_module_desc *desc;
|
struct iwd_module_desc *desc;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user