diff options
author | Yang Li <[email protected]> | 2021-02-02 11:34:36 +0800 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2021-04-23 01:38:04 +1000 |
commit | caea7b833d866e0badf4b12dc41bf9fe6a7295f3 (patch) | |
tree | 67057c0dbae99bcab62048022a85e7a5b05f7af4 | |
parent | f3d03fc748d4e48f4cd8dea1bfeb173cb3b0c19f (diff) |
powerpc/64s: remove unneeded semicolon
Eliminate the following coccicheck warning:
./arch/powerpc/platforms/powernv/setup.c:160:2-3: Unneeded semicolon
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | arch/powerpc/platforms/powernv/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powernv/setup.c b/arch/powerpc/platforms/powernv/setup.c index aadf932c4e61..a8db3f153063 100644 --- a/arch/powerpc/platforms/powernv/setup.c +++ b/arch/powerpc/platforms/powernv/setup.c @@ -157,7 +157,7 @@ static void __init pnv_check_guarded_cores(void) for_each_node_by_type(dn, "cpu") { if (of_property_match_string(dn, "status", "bad") >= 0) bad_count++; - }; + } if (bad_count) { printk(" _ _______________\n"); |