Bluetooth: convert to using newly introduced integer sized types

Convert code to use u{8,16,32,64}_t and s{8,16,32,64}_t instead of C99
integer types.

Jira: ZEP-2051

Change-Id: I8f57a17f78e674aca5400f005db8975c9f9e150e
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-20 12:00:29 -05:00
commit d0eb235510
100 changed files with 3697 additions and 3697 deletions

View file

@ -17,17 +17,17 @@ extern "C" {
/** @brief AVDTP SEID Information */
struct bt_avdtp_seid_info {
/** Stream End Point ID */
uint8_t id:6;
u8_t id:6;
/** End Point usage status */
uint8_t inuse:1;
u8_t inuse:1;
/** Reserved */
uint8_t rfa0:1;
u8_t rfa0:1;
/** Media-type of the End Point */
uint8_t media_type:4;
u8_t media_type:4;
/** TSEP of the End Point */
uint8_t tsep:1;
u8_t tsep:1;
/** Reserved */
uint8_t rfa1:3;
u8_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*/
uint8_t state; /* current state of the stream */
u8_t state; /* current state of the stream */
struct bt_avdtp_stream *next;
};