mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 22:36:05 +00:00

Remove <common.h> from all "cmd/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
23 lines
494 B
C
23 lines
494 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Common code for EFI commands
|
|
*
|
|
* Copyright 2023 Google LLC
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <efi.h>
|
|
#include <efi_api.h>
|
|
#include <uuid.h>
|
|
|
|
void efi_show_tables(struct efi_system_table *systab)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < systab->nr_tables; i++) {
|
|
struct efi_configuration_table *tab = &systab->tables[i];
|
|
|
|
printf("%p %pUl %s\n", tab->table, tab->guid.b,
|
|
uuid_guid_get_str(tab->guid.b) ?: "(unknown)");
|
|
}
|
|
}
|