diff options
author | Chris Packham <judge.packham@gmail.com> | 2017-08-07 16:04:14 +1200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-13 15:17:37 -0400 |
commit | 7b07a20c5e668b67348dc7a3abbeb437ab0afa52 (patch) | |
tree | 6aaec57277f7025ae2af9766b52eb0288877381c /cmd/bdinfo.c | |
parent | 3a37aee30f56aea69849f27d7839923eec58a2af (diff) | |
download | u-boot-7b07a20c5e668b67348dc7a3abbeb437ab0afa52.tar.gz |
cmd/bdinfo: correct comment in board_detail
This appears to be a simple typo that dates back to the original
implementation of board_detail in commit e79394643b26 ("common: Update
cmd_bdinfo for PPC").
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'cmd/bdinfo.c')
-rw-r--r-- | cmd/bdinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 81ac78da94..96d7b72df2 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -166,7 +166,7 @@ static inline void __maybe_unused print_std_bdinfo(const bd_t *bd) #if defined(CONFIG_PPC) void __weak board_detail(void) { - /* Please define boot_detail() for your platform */ + /* Please define board_detail() for your platform */ } int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |