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

@ -54,7 +54,7 @@ static int mcux_dac32_channel_setup(struct device *dev,
return 0;
}
static int mcux_dac32_write_value(struct device *dev, u8_t channel, u32_t value)
static int mcux_dac32_write_value(struct device *dev, uint8_t channel, uint32_t value)
{
const struct mcux_dac32_config *config = dev->config_info;
struct mcux_dac32_data *data = dev->driver_data;