switch: make init function static

Fixes checkpatch error that slipped in

Signed-off-by: Curtis Malainey <cujomalainey@google.com>
This commit is contained in:
Curtis Malainey 2019-03-21 16:14:40 -07:00 committed by Liam Girdwood
parent 85f5cec364
commit 0056599b6e
1 changed files with 1 additions and 3 deletions

View File

@ -97,9 +97,7 @@ struct comp_driver comp_switch = {
},
};
void sys_comp_switch_init(void);
void sys_comp_switch_init(void)
static void sys_comp_switch_init(void)
{
comp_register(&comp_switch);
}