aboutsummaryrefslogtreecommitdiff
path: root/board/freescale
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-11-18 14:04:52 -0700
committerTom Rini <trini@konsulko.com>2023-12-13 11:51:24 -0500
commit10c398d6e4a2aec1ce73f99e634781a020b467c4 (patch)
tree3f4781115ee5f6f0dd1632262bbbaba2251a56e8 /board/freescale
parentf7fac5e7f5a29e6c0e0de61b08caaaa32df0c6fd (diff)
downloadu-boot-10c398d6e4a2aec1ce73f99e634781a020b467c4.zip
u-boot-10c398d6e4a2aec1ce73f99e634781a020b467c4.tar.gz
u-boot-10c398d6e4a2aec1ce73f99e634781a020b467c4.tar.bz2
treewide: Tidy up semicolon after command macros
The U_BOOT_CMD_COMPLETE() macro has a semicolon at the end, perhaps inadvertently. Some code has taken advantage of this. Tidy this up by dropping the semicolon from the macro and adding it to macro invocations as required. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/common/vid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/common/vid.c b/board/freescale/common/vid.c
index 5ec3f2a..fc5d400 100644
--- a/board/freescale/common/vid.c
+++ b/board/freescale/common/vid.c
@@ -793,4 +793,4 @@ U_BOOT_CMD(
vdd_read, 1, 0, do_vdd_read,
"read VDD",
" - Read the voltage specified in mV"
-)
+);