mirror of https://github.com/thesofproject/sof.git
volume: make init function static
Fixes checkpatch error that slipped in Signed-off-by: Curtis Malainey <cujomalainey@google.com>
This commit is contained in:
parent
e1a757bd19
commit
509990620b
|
@ -667,12 +667,10 @@ struct comp_driver comp_volume = {
|
|||
},
|
||||
};
|
||||
|
||||
void sys_comp_volume_init(void);
|
||||
|
||||
/**
|
||||
* \brief Initializes volume component.
|
||||
*/
|
||||
void sys_comp_volume_init(void)
|
||||
static void sys_comp_volume_init(void)
|
||||
{
|
||||
comp_register(&comp_volume);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue