Skip to content

Commit

Permalink
Bluetooth: pacs: Fix missing return values in doxygen
Browse files Browse the repository at this point in the history
This fixes missing return values description in doxygen documentation.

Signed-off-by: Mariusz Skamra <[email protected]>
  • Loading branch information
MariuszSkamra committed Dec 5, 2023
1 parent 0d79ebe commit 2f0fd91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/zephyr/bluetooth/audio/pacs.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ int bt_pacs_cap_unregister(enum bt_audio_dir dir, struct bt_pacs_cap *cap);
* @param dir Direction of the endpoints to change location for.
* @param location The location to be set.
*
* @return 0 in case of success or negative value in case of error.
*/
int bt_pacs_set_location(enum bt_audio_dir dir,
enum bt_audio_location location);
Expand All @@ -84,6 +85,8 @@ int bt_pacs_set_location(enum bt_audio_dir dir,
*
* @param dir Direction of the endpoints to change available contexts for.
* @param contexts The contexts to be set.
*
* @return 0 in case of success or negative value in case of error.
*/
int bt_pacs_set_available_contexts(enum bt_audio_dir dir,
enum bt_audio_context contexts);
Expand Down Expand Up @@ -131,6 +134,8 @@ enum bt_audio_context bt_pacs_get_available_contexts_for_conn(struct bt_conn *co
*
* @param dir Direction of the endpoints to change available contexts for.
* @param contexts The contexts to be set.
*
* @return 0 in case of success or negative value in case of error.
*/
int bt_pacs_set_supported_contexts(enum bt_audio_dir dir,
enum bt_audio_context contexts);
Expand Down

0 comments on commit 2f0fd91

Please sign in to comment.