From 3fa7be207c8bec91bbd3e786ae8e82078aff28b4 Mon Sep 17 00:00:00 2001 From: Arkadiusz Lichwa Date: Mon, 18 Jul 2016 11:26:01 +0200 Subject: [PATCH] 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 --- include/bluetooth/buf.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/bluetooth/buf.h b/include/bluetooth/buf.h index c2b39d17b13..62f12c1680e 100644 --- a/include/bluetooth/buf.h +++ b/include/bluetooth/buf.h @@ -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. */