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:
Kumar Gala 2020-05-27 11:26:57 -05:00 committed by Kumar Gala
commit a1b77fd589
2364 changed files with 32505 additions and 32505 deletions

View file

@ -21,8 +21,8 @@
#define LOG_LEVEL CONFIG_SENSOR_LOG_LEVEL
LOG_MODULE_DECLARE(IIS2MDC);
static int iis2mdc_i2c_read(struct device *dev, u8_t reg_addr,
u8_t *value, u16_t len)
static int iis2mdc_i2c_read(struct device *dev, uint8_t reg_addr,
uint8_t *value, uint16_t len)
{
struct iis2mdc_data *data = dev->driver_data;
const struct iis2mdc_config *cfg = dev->config_info;
@ -31,8 +31,8 @@ static int iis2mdc_i2c_read(struct device *dev, u8_t reg_addr,
reg_addr, value, len);
}
static int iis2mdc_i2c_write(struct device *dev, u8_t reg_addr,
u8_t *value, u16_t len)
static int iis2mdc_i2c_write(struct device *dev, uint8_t reg_addr,
uint8_t *value, uint16_t len)
{
struct iis2mdc_data *data = dev->driver_data;
const struct iis2mdc_config *cfg = dev->config_info;