mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 23:41:50 +00:00

When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
24 lines
514 B
C
24 lines
514 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 <common.h>
|
|
#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)");
|
|
}
|
|
}
|