mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
freescale: ls1021atwr: Drop use of CONFIG_RESET
It is not recommended to use CONFIG_xxx defines for things which are not Kconfig options. Rename this. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
5b5dd690dd
commit
8ff123a685
2 changed files with 4 additions and 5 deletions
|
@ -41,7 +41,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
|
||||
#define VERSION_MASK 0x00FF
|
||||
#define BANK_MASK 0x0001
|
||||
#define CONFIG_RESET 0x1
|
||||
#define CFG_RESET 0x1
|
||||
#define INIT_RESET 0x1
|
||||
|
||||
#define CPLD_SET_MUX_SERDES 0x20
|
||||
|
@ -283,7 +283,7 @@ static void convert_serdes_mux(int type, int need_reset)
|
|||
|
||||
if (need_reset == 1) {
|
||||
printf("Reset board to enable configuration\n");
|
||||
cpld_data->system_rst = CONFIG_RESET;
|
||||
cpld_data->system_rst = CFG_RESET;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -612,7 +612,7 @@ static void convert_flash_bank(char bank)
|
|||
cpld_data->vbank = bank;
|
||||
|
||||
printf("Reset board to enable configuration.\n");
|
||||
cpld_data->system_rst = CONFIG_RESET;
|
||||
cpld_data->system_rst = CFG_RESET;
|
||||
}
|
||||
|
||||
static int flash_bank_cmd(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
|
@ -644,7 +644,7 @@ static int cpld_reset_cmd(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
if (argc > 2)
|
||||
return CMD_RET_USAGE;
|
||||
if ((argc == 1) || (strcmp(argv[1], "conf") == 0))
|
||||
cpld_data->system_rst = CONFIG_RESET;
|
||||
cpld_data->system_rst = CFG_RESET;
|
||||
else if (strcmp(argv[1], "init") == 0)
|
||||
cpld_data->global_rst = INIT_RESET;
|
||||
else
|
||||
|
|
|
@ -1339,7 +1339,6 @@ CONFIG_RESERVED_01_BASE
|
|||
CONFIG_RESERVED_02_BASE
|
||||
CONFIG_RESERVED_03_BASE
|
||||
CONFIG_RESERVED_04_BASE
|
||||
CONFIG_RESET
|
||||
CONFIG_RESET_PHY_R
|
||||
CONFIG_RESET_TO_RETRY
|
||||
CONFIG_RESET_VECTOR_ADDRESS
|
||||
|
|
Loading…
Reference in a new issue