mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
efi_loader: static functions in helloworld.c
Make functions that are not used externally static. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
parent
8d4c2c770c
commit
575cfe7b47
1 changed files with 2 additions and 1 deletions
|
@ -125,7 +125,7 @@ static void print_config_tables(void)
|
|||
* @systable: system table
|
||||
* @con_out: simple text output protocol
|
||||
*/
|
||||
void print_load_options(struct efi_loaded_image *loaded_image)
|
||||
static void print_load_options(struct efi_loaded_image *loaded_image)
|
||||
{
|
||||
/* Output the load options */
|
||||
con_out->output_string(con_out, u"Load options: ");
|
||||
|
@ -143,6 +143,7 @@ void print_load_options(struct efi_loaded_image *loaded_image)
|
|||
* @device_path: device path to print
|
||||
* @dp2txt: device path to text protocol
|
||||
*/
|
||||
static
|
||||
efi_status_t print_device_path(struct efi_device_path *device_path,
|
||||
struct efi_device_path_to_text_protocol *dp2txt)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue