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
|
@ -47,7 +47,7 @@ struct gpio_sifive_config {
|
|||
struct gpio_driver_config common;
|
||||
uintptr_t gpio_base_addr;
|
||||
/* multi-level encoded interrupt corresponding to pin 0 */
|
||||
u32_t gpio_irq_base;
|
||||
uint32_t gpio_irq_base;
|
||||
sifive_cfg_func_t gpio_cfg_func;
|
||||
};
|
||||
|
||||
|
@ -120,7 +120,7 @@ static void gpio_sifive_irq_handler(void *arg)
|
|||
const struct gpio_sifive_config *cfg = DEV_GPIO_CFG(dev);
|
||||
|
||||
/* Calculate pin and mask from base level 2 line */
|
||||
u8_t pin = 1 + (riscv_plic_get_irq() - (u8_t)(cfg->gpio_irq_base >> 8));
|
||||
uint8_t pin = 1 + (riscv_plic_get_irq() - (uint8_t)(cfg->gpio_irq_base >> 8));
|
||||
|
||||
/* This peripheral tracks each condition separately: a
|
||||
* transition from low to high will mark the pending bit for
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue