aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Li <[email protected]>2022-01-07 08:28:26 +0800
committerRob Herring <[email protected]>2022-01-08 08:50:39 -0600
commit2b35e9684d093569fd4743719bccdd7409eb9f8e (patch)
tree524b7f50a2a12c90525634b2dbe0a97e90e894f1
parent5d05b811b5acb92fc581a7b328b36646c86f5ab9 (diff)
of: unittest: remove unneeded semicolon
Eliminate the following coccicheck warning: ./drivers/of/unittest.c:1961:2-3: Unneeded semicolon Reported-by: Abaci Robot <[email protected]> Signed-off-by: Yang Li <[email protected]> Signed-off-by: Rob Herring <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/of/unittest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index ab4f61cc6a95..70992103c07d 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -1958,7 +1958,7 @@ static void of_unittest_remove_tracked_overlays(void)
__func__, overlay_name, ret);
}
of_unittest_untrack_overlay(save_ovcs_id);
- };
+ }
}