From: Simon Glass Date: Sun, 10 May 2020 20:17:00 +0000 (-0600) Subject: bdinfo: Update the file comments X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bda8909fcc813cd5d4175287f53237911c96e316;p=oweals%2Fu-boot.git bdinfo: Update the file comments Update the comment at the top of the file to indicate what this file does. Also drop the line at the bottom and an unnecessary header include. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 420423a81b..b7f5f710b4 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -1,19 +1,17 @@ // SPDX-License-Identifier: GPL-2.0+ /* + * Implements the 'bd' command to show board information + * * (C) Copyright 2003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. */ -/* - * Boot support - */ #include #include #include #include #include #include -#include DECLARE_GLOBAL_DATA_PTR; @@ -104,8 +102,6 @@ int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) return 0; } -/* -------------------------------------------------------------------- */ - U_BOOT_CMD( bdinfo, 1, 1, do_bdinfo, "print Board Info structure",