mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
efi_loader: fix comments in indent_string()
Provide a better description for indent_string. Fix a typo. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
49db1cb8c3
commit
c8df80c514
1 changed files with 6 additions and 3 deletions
|
@ -111,8 +111,11 @@ void efi_restore_gd(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Two spaces per indent level, maxing out at 10.. which ought to be
|
* Return a string for indenting with two spaces per level. A maximum of ten
|
||||||
* enough for anyone ;-)
|
* indent levels is supported. Higher indent levels will be truncated.
|
||||||
|
*
|
||||||
|
* @level indent level
|
||||||
|
* @return indent string
|
||||||
*/
|
*/
|
||||||
static const char *indent_string(int level)
|
static const char *indent_string(int level)
|
||||||
{
|
{
|
||||||
|
@ -1456,7 +1459,7 @@ error:
|
||||||
* for details.
|
* for details.
|
||||||
*
|
*
|
||||||
* @boot_policy true for request originating from the boot manager
|
* @boot_policy true for request originating from the boot manager
|
||||||
* @parent_image the calles's image handle
|
* @parent_image the caller's image handle
|
||||||
* @file_path the path of the image to load
|
* @file_path the path of the image to load
|
||||||
* @source_buffer memory location from which the image is installed
|
* @source_buffer memory location from which the image is installed
|
||||||
* @source_size size of the memory area from which the image is
|
* @source_size size of the memory area from which the image is
|
||||||
|
|
Loading…
Add table
Reference in a new issue