diff options
author | Bin Meng | 2022-10-26 12:40:07 +0800 |
---|---|---|
committer | Tom Rini | 2022-11-02 13:58:17 -0400 |
commit | ea253ad7b53f4ec3b614cebcc29d5905f10a23e3 (patch) | |
tree | ad2a0f79a010f5c5fea46e77b5b2b57d2fd1580d /arch/powerpc/lib | |
parent | aa59c1bec793c1e8155032268ac95171437aa418 (diff) |
treewide: Remove the unnecessary space before semicolon
%s/return ;/return;
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r-- | arch/powerpc/lib/bootm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/lib/bootm.c b/arch/powerpc/lib/bootm.c index 512787854c8..8ae8d8a3e7d 100644 --- a/arch/powerpc/lib/bootm.c +++ b/arch/powerpc/lib/bootm.c @@ -113,7 +113,7 @@ static void boot_jump_linux(struct bootm_headers *images) cmd_start, cmd_end, 0, 0); /* does not return */ } - return ; + return; } void arch_lmb_reserve(struct lmb *lmb) @@ -148,7 +148,7 @@ void arch_lmb_reserve(struct lmb *lmb) cpu_mp_lmb_reserve(lmb); #endif - return ; + return; } static void boot_prep_linux(struct bootm_headers *images) |