From 36e3c47f73b9ec2bf39adeb1d91b4207be59e341 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Thu, 6 Jan 2022 16:54:41 -0800 Subject: [PATCH] bluetooth: remove @return doc for void functions For functions returning nothing, there is no need to document with @return, as Doxgen complains about "documented empty return type of ...". Signed-off-by: Daniel Leung --- include/bluetooth/uuid.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/bluetooth/uuid.h b/include/bluetooth/uuid.h index 92c39c60873..b89a33821c6 100644 --- a/include/bluetooth/uuid.h +++ b/include/bluetooth/uuid.h @@ -1877,8 +1877,6 @@ bool bt_uuid_create(struct bt_uuid *uuid, const uint8_t *data, uint8_t data_len) * @param uuid Bluetooth UUID * @param str pointer where to put converted string * @param len length of str - * - * @return N/A */ void bt_uuid_to_str(const struct bt_uuid *uuid, char *str, size_t len);