zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
ee6fa31af6
commit
a1b77fd589
2364 changed files with 32505 additions and 32505 deletions
|
@ -111,7 +111,7 @@ int arch_irq_is_enabled(unsigned int irq)
|
|||
return (EVENT_UNIT->INTPTEN &
|
||||
BIT(rv32m1_level1_irq(irq))) != 0;
|
||||
} else {
|
||||
u32_t channel, line, ier;
|
||||
uint32_t channel, line, ier;
|
||||
|
||||
/*
|
||||
* Here we break the abstraction and look
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue