Rename _IsrTable to _sw_isr_table
Updating global variable's name to follow a consistent naming convention. 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: I7fc572f869c5f104538cfb3f84b1b36071e54dde Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
parent
4d19693b33
commit
092f1132fe
7 changed files with 18 additions and 18 deletions
|
@ -51,7 +51,7 @@ struct _IsrTableEntry {
|
|||
|
||||
typedef struct _IsrTableEntry _IsrTableEntry_t;
|
||||
|
||||
extern _IsrTableEntry_t _IsrTable[CONFIG_NUM_IRQS];
|
||||
extern _IsrTableEntry_t _sw_isr_table[CONFIG_NUM_IRQS];
|
||||
#endif /* _ASMLANGUAGE */
|
||||
|
||||
#endif /* _SW_ISR_TABLE__H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue