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
|
@ -63,8 +63,8 @@
|
|||
#define ETH_TX_DISABLE(base) (base->NETWORKCTRL &= ~ETH_NETWORKCTRL_ENBTX)
|
||||
|
||||
struct eth_buf_desc {
|
||||
u32_t address;
|
||||
u32_t status;
|
||||
uint32_t address;
|
||||
uint32_t status;
|
||||
};
|
||||
|
||||
struct eth_gecko_pin_list {
|
||||
|
@ -76,7 +76,7 @@ struct eth_gecko_pin_list {
|
|||
struct eth_gecko_dev_cfg {
|
||||
ETH_TypeDef *regs;
|
||||
const struct eth_gecko_pin_list *pin_list;
|
||||
u32_t pin_list_size;
|
||||
uint32_t pin_list_size;
|
||||
void (*config_func)(void);
|
||||
struct phy_gecko_dev phy;
|
||||
};
|
||||
|
@ -84,7 +84,7 @@ struct eth_gecko_dev_cfg {
|
|||
/* Device run time data */
|
||||
struct eth_gecko_dev_data {
|
||||
struct net_if *iface;
|
||||
u8_t mac_addr[6];
|
||||
uint8_t mac_addr[6];
|
||||
struct k_sem tx_sem;
|
||||
struct k_sem rx_sem;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue