Rename __defaultEsf to _default_esf
Updating global variable's name to follow a consistent naming convention. Explicitly moved from __ to _ by direction of Ben Walsh Change accomplished with the following script: #!/bin/bash echo "Searching for ${1} to replace with ${2}" find ./ \( -name "*.[chs]" -o -name "sysgen.py" -o -name "*.kconf" -o -name "*.arch" \) \ ! -path "./host/src/genIdt/*" \ ! -path "*/outdir/*" | xargs sed -i 's/\b'${1}'\b/'${2}'/g'; Change-Id: Idd6f7c3c2fdd818f0a794985f3689705cac3c0a2 Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
parent
3534dbf91f
commit
2ac4a04b92
10 changed files with 15 additions and 15 deletions
|
@ -103,7 +103,7 @@ void _Fault(void)
|
|||
{
|
||||
uint32_t ecr = _arc_v2_aux_reg_read(_ARC_V2_ECR);
|
||||
|
||||
FAULT_DUMP(&__defaultEsf, ecr);
|
||||
FAULT_DUMP(&_default_esf, ecr);
|
||||
|
||||
_SysFatalErrorHandler(_NANO_ERR_HW_EXCEPTION, &__defaultEsf);
|
||||
_SysFatalErrorHandler(_NANO_ERR_HW_EXCEPTION, &_default_esf);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue