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:
Arkadiusz Lichwa 2016-07-18 11:26:01 +02:00 committed by Johan Hedberg
parent a00625f37c
commit 3fa7be207c

View File

@ -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. */