mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
Fix typo in macros, "FIRMEWARE" -> "FIRMWARE"
Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
This commit is contained in:
parent
81b564353d
commit
9f67b56772
3 changed files with 7 additions and 7 deletions
|
@ -65,7 +65,7 @@ config ARMV8_SEC_FIRMWARE_SUPPORT
|
|||
- Address of secure firmware.
|
||||
- Address to hold the return address from secure firmware.
|
||||
- Secure firmware FIT image related information.
|
||||
Such as: SEC_FIRMWARE_FIT_IMAGE and SEC_FIRMEWARE_FIT_CNF_NAME
|
||||
Such as: SEC_FIRMWARE_FIT_IMAGE and SEC_FIRMWARE_FIT_CNF_NAME
|
||||
- The target exception level that secure monitor firmware will
|
||||
return to.
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@ phys_addr_t sec_firmware_addr;
|
|||
#ifndef SEC_FIRMWARE_FIT_IMAGE
|
||||
#define SEC_FIRMWARE_FIT_IMAGE "firmware"
|
||||
#endif
|
||||
#ifndef SEC_FIRMEWARE_FIT_CNF_NAME
|
||||
#define SEC_FIRMEWARE_FIT_CNF_NAME "config-1"
|
||||
#ifndef SEC_FIRMWARE_FIT_CNF_NAME
|
||||
#define SEC_FIRMWARE_FIT_CNF_NAME "config-1"
|
||||
#endif
|
||||
#ifndef SEC_FIRMWARE_TARGET_EL
|
||||
#define SEC_FIRMWARE_TARGET_EL 2
|
||||
|
@ -44,7 +44,7 @@ static int sec_firmware_get_data(const void *sec_firmware_img,
|
|||
char *desc;
|
||||
int ret;
|
||||
|
||||
conf_node_name = SEC_FIRMEWARE_FIT_CNF_NAME;
|
||||
conf_node_name = SEC_FIRMWARE_FIT_CNF_NAME;
|
||||
|
||||
conf_node_off = fit_conf_get_node(sec_firmware_img, conf_node_name);
|
||||
if (conf_node_off < 0) {
|
||||
|
@ -124,7 +124,7 @@ static int sec_firmware_check_copy_loadable(const void *sec_firmware_img,
|
|||
const char *name, *str, *type;
|
||||
int len;
|
||||
|
||||
conf_node_name = SEC_FIRMEWARE_FIT_CNF_NAME;
|
||||
conf_node_name = SEC_FIRMWARE_FIT_CNF_NAME;
|
||||
|
||||
conf_node_off = fit_conf_get_node(sec_firmware_img, conf_node_name);
|
||||
if (conf_node_off < 0) {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <fsl_validate.h>
|
||||
#endif
|
||||
|
||||
#define PFE_FIRMEWARE_FIT_CNF_NAME "config@1"
|
||||
#define PFE_FIRMWARE_FIT_CNF_NAME "config@1"
|
||||
|
||||
static const void *pfe_fit_addr = (void *)CONFIG_SYS_LS_PFE_FW_ADDR;
|
||||
|
||||
|
@ -99,7 +99,7 @@ static int pfe_get_fw(const void **data,
|
|||
char *desc;
|
||||
int ret = 0;
|
||||
|
||||
conf_node_name = PFE_FIRMEWARE_FIT_CNF_NAME;
|
||||
conf_node_name = PFE_FIRMWARE_FIT_CNF_NAME;
|
||||
|
||||
conf_node_off = fit_conf_get_node(pfe_fit_addr, conf_node_name);
|
||||
if (conf_node_off < 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue