Commit 30ca3427 authored by Aaron Plattner's avatar Aaron Plattner
Browse files

Make init_config and init_fixes static



Fixes -Wmissing-prototypes warnings.
Signed-off-by: default avatarAaron Plattner <aplattner@nvidia.com>
parent 22a2f15f
...@@ -328,7 +328,7 @@ static void init_running_under_flash(void) ...@@ -328,7 +328,7 @@ static void init_running_under_flash(void)
} }
} }
void init_config(void) static void init_config(void)
{ {
FILE *fp; FILE *fp;
char buffer[1024]; char buffer[1024];
...@@ -360,7 +360,7 @@ void init_config(void) ...@@ -360,7 +360,7 @@ void init_config(void)
fclose(fp); fclose(fp);
} }
void init_fixes(void) static void init_fixes(void)
{ {
if (_inited_fixes) { if (_inited_fixes) {
return; return;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment