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
|
@ -35,15 +35,15 @@ extern int shared_irq_initialize(struct device *port);
|
|||
typedef void (*shared_irq_config_irq_t)(void);
|
||||
|
||||
struct shared_irq_config {
|
||||
u32_t irq_num;
|
||||
uint32_t irq_num;
|
||||
shared_irq_config_irq_t config;
|
||||
u32_t client_count;
|
||||
uint32_t client_count;
|
||||
};
|
||||
|
||||
struct shared_irq_client {
|
||||
struct device *isr_dev;
|
||||
isr_t isr_func;
|
||||
u32_t enabled;
|
||||
uint32_t enabled;
|
||||
};
|
||||
|
||||
struct shared_irq_runtime {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue