kinetis: Fix typo in variable names
It's security, not securtiy. Change-Id: Idb10d7e0a1ca47d2d93b496d12cd4ec7ad116f22 Signed-off-by: Andreas Färber <afaerber@suse.de> Reviewed-on: http://openocd.zylin.com/3487 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>__archive__
parent
426d9f8785
commit
89bf96ffe6
|
@ -1920,7 +1920,7 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const struct command_registration kinetis_securtiy_command_handlers[] = {
|
static const struct command_registration kinetis_security_command_handlers[] = {
|
||||||
{
|
{
|
||||||
.name = "check_security",
|
.name = "check_security",
|
||||||
.mode = COMMAND_EXEC,
|
.mode = COMMAND_EXEC,
|
||||||
|
@ -1944,7 +1944,7 @@ static const struct command_registration kinetis_exec_command_handlers[] = {
|
||||||
.mode = COMMAND_ANY,
|
.mode = COMMAND_ANY,
|
||||||
.help = "",
|
.help = "",
|
||||||
.usage = "",
|
.usage = "",
|
||||||
.chain = kinetis_securtiy_command_handlers,
|
.chain = kinetis_security_command_handlers,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "disable_wdog",
|
.name = "disable_wdog",
|
||||||
|
|
|
@ -1241,7 +1241,7 @@ static int kinetis_ke_blank_check(struct flash_bank *bank)
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct command_registration kinetis_ke_securtiy_command_handlers[] = {
|
static const struct command_registration kinetis_ke_security_command_handlers[] = {
|
||||||
{
|
{
|
||||||
.name = "check_security",
|
.name = "check_security",
|
||||||
.mode = COMMAND_EXEC,
|
.mode = COMMAND_EXEC,
|
||||||
|
@ -1272,7 +1272,7 @@ static const struct command_registration kinetis_ke_exec_command_handlers[] = {
|
||||||
.mode = COMMAND_ANY,
|
.mode = COMMAND_ANY,
|
||||||
.help = "",
|
.help = "",
|
||||||
.usage = "",
|
.usage = "",
|
||||||
.chain = kinetis_ke_securtiy_command_handlers,
|
.chain = kinetis_ke_security_command_handlers,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "disable_wdog",
|
.name = "disable_wdog",
|
||||||
|
|
Loading…
Reference in New Issue