diff options
| author | Sergi Granell <[email protected]> | 2019-02-18 15:40:25 +0100 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2019-02-19 18:22:58 +0530 |
| commit | 4b92518959e371a8c82276a7244aebe9ca4c90de (patch) | |
| tree | 1c6de933aa521e3482dad7df9968e21bf47489c9 | |
| parent | d046974cf6c3d4bca880b72bc877c7b185f73a7d (diff) | |
template: Fix typo in platform_final_init
There was a space instead of '_' in the function `platform_final_init`.
| -rw-r--r-- | platform/template/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index cc4065e4..cf6a052b 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -27,7 +27,7 @@ static int platform_early_init(bool cold_boot) /* * Platform final initialization. */ -static int platform final_init(bool cold_boot); +static int platform_final_init(bool cold_boot); { return 0; } |
