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

@ -17,17 +17,17 @@ extern "C" {
/** @brief AVDTP SEID Information */
struct bt_avdtp_seid_info {
/** Stream End Point ID */
u8_t id:6;
uint8_t id:6;
/** End Point usage status */
u8_t inuse:1;
uint8_t inuse:1;
/** Reserved */
u8_t rfa0:1;
uint8_t rfa0:1;
/** Media-type of the End Point */
u8_t media_type:4;
uint8_t media_type:4;
/** TSEP of the End Point */
u8_t tsep:1;
uint8_t tsep:1;
/** Reserved */
u8_t rfa1:3;
uint8_t rfa1:3;
} __packed;
/** @brief AVDTP Local SEP*/
@ -43,7 +43,7 @@ struct bt_avdtp_stream {
struct bt_l2cap_br_chan chan; /* Transport Channel*/
struct bt_avdtp_seid_info lsep; /* Configured Local SEP */
struct bt_avdtp_seid_info rsep; /* Configured Remote SEP*/
u8_t state; /* current state of the stream */
uint8_t state; /* current state of the stream */
struct bt_avdtp_stream *next;
};