diff options
author | Simon Glass <sjg@chromium.org> | 2023-11-18 14:04:52 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-13 11:51:24 -0500 |
commit | 10c398d6e4a2aec1ce73f99e634781a020b467c4 (patch) | |
tree | 3f4781115ee5f6f0dd1632262bbbaba2251a56e8 /cmd/btrfs.c | |
parent | f7fac5e7f5a29e6c0e0de61b08caaaa32df0c6fd (diff) |
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 'cmd/btrfs.c')
-rw-r--r-- | cmd/btrfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/btrfs.c b/cmd/btrfs.c index 98daea99e9e..2843835d08b 100644 --- a/cmd/btrfs.c +++ b/cmd/btrfs.c @@ -24,4 +24,4 @@ U_BOOT_CMD(btrsubvol, 3, 1, do_btrsubvol, "list subvolumes of a BTRFS filesystem", "<interface> <dev[:part]>\n" " - List subvolumes of a BTRFS filesystem." -) +); |