mirror of https://github.com/thesofproject/sof.git
init: fix uninitiallized variable
we should never need it, but this is just to silence cppcheck Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
This commit is contained in:
parent
33c13e8c17
commit
89afb8784d
|
@ -162,7 +162,7 @@ static int primary_core_init(int argc, char *argv[], struct sof *sof)
|
||||||
#ifndef __ZEPHYR__
|
#ifndef __ZEPHYR__
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int err;
|
int err = 0;
|
||||||
|
|
||||||
trace_point(TRACE_BOOT_START);
|
trace_point(TRACE_BOOT_START);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue