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
|
@ -22,13 +22,13 @@ extern "C" {
|
|||
|
||||
struct led_data {
|
||||
/* Minimum acceptable LED blinking time period (in ms) */
|
||||
u32_t min_period;
|
||||
uint32_t min_period;
|
||||
/* Maximum acceptable LED blinking time period (in ms) */
|
||||
u32_t max_period;
|
||||
uint32_t max_period;
|
||||
/* Minimum acceptable LED brightness value */
|
||||
u16_t min_brightness;
|
||||
uint16_t min_brightness;
|
||||
/* Maximum acceptable LED brightness value */
|
||||
u16_t max_brightness;
|
||||
uint16_t max_brightness;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue