mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-30 08:07:59 +00:00

Now that capsule update sets the dfu_alt_info environment variable
explicitly, there is no need to support it in the set_dfu_alt_info()
function. Decouple SET_DFU_ALT_INFO from EFI_CAPSULE_FIRMWARE_FIT and
EFI_CAPSULE_FIRMWARE_RAW. For many boards, this was the only use of
set_dfu_alt_info() so remove the function entirely.
Fixes: a9e6f01a94
("efi: Define set_dfu_alt_info() for boards with UEFI capsule update enabled")
Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> # for board/libre-computer/*
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Wadim Egorov <w.egorov@phytec.de> # for
24 lines
460 B
C
24 lines
460 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* (C) Copyright 2020 Xilinx, Inc.
|
|
* Michal Simek <michal.simek@amd.com>
|
|
*/
|
|
|
|
#ifndef _BOARD_XILINX_COMMON_BOARD_H
|
|
#define _BOARD_XILINX_COMMON_BOARD_H
|
|
|
|
int board_late_init_xilinx(void);
|
|
|
|
int xilinx_read_eeprom(void);
|
|
|
|
char *board_name_decode(void);
|
|
|
|
bool board_detection(void);
|
|
|
|
char *soc_name_decode(void);
|
|
|
|
bool soc_detection(void);
|
|
|
|
void configure_capsule_updates(void);
|
|
|
|
#endif /* BOARD_XILINX_COMMON_BOARD_H */
|