Bluetooth: doc: Fix displacement of HCI buffer description
Improves placement of HCI buffer types description in Bluetooth API documentation by moving the proper comment describing the value to separate line above the item. Change-Id: I15fb72842853b774a066f2c4f075547eb22a406e Signed-off-by: Arkadiusz Lichwa <arkadiusz.lichwa@tieto.com>
This commit is contained in:
parent
a00625f37c
commit
3fa7be207c
@ -34,10 +34,14 @@
|
||||
|
||||
/** Possible types of buffers passed around the Bluetooth stack */
|
||||
enum bt_buf_type {
|
||||
BT_BUF_CMD, /** HCI command */
|
||||
BT_BUF_EVT, /** HCI event */
|
||||
BT_BUF_ACL_OUT, /** Outgoing ACL data */
|
||||
BT_BUF_ACL_IN, /** Incoming ACL data */
|
||||
/** HCI command */
|
||||
BT_BUF_CMD,
|
||||
/** HCI event */
|
||||
BT_BUF_EVT,
|
||||
/** Outgoing ACL data */
|
||||
BT_BUF_ACL_OUT,
|
||||
/** Incoming ACL data */
|
||||
BT_BUF_ACL_IN,
|
||||
};
|
||||
|
||||
/** Minimum amount of user data size for buffers passed to the stack. */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user