Commit 48aedc98 authored by Emil Gydesen's avatar Emil Gydesen Committed by Benjamin Cabé
Browse files

Bluetooth: Audio: Spring cleanup for audio source files



Add missing and remove unused includes. Fix spelling mistakes.

Signed-off-by: default avatarEmil Gydesen <emil.gydesen@nordicsemi.no>
parent dbabc189
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ config BT_ASCS_MAX_ACTIVE_ASES
	default BT_ISO_MAX_CHAN
	range 1 $(UINT16_MAX)
	help
	  The number of simultanesouly supported active ASEs, in particular
	  The number of simultaneously supported active ASEs, in particular
	  meaning the number of ASEs that are allowed to be in a non-idle state at
	  a single time.

+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ config BT_CSIP_SET_MEMBER_ENC_SIRK_SUPPORT
	  Enables support encrypting the SIRK.

config BT_CSIP_SET_MEMBER_MAX_INSTANCE_COUNT
	int "Coordinated Set Identification Profle max service instance count"
	int "Coordinated Set Identification Profile max service instance count"
	default 1
	range 1 $(UINT8_MAX)
	help
+1 −1
Original line number Diff line number Diff line
@@ -3271,7 +3271,7 @@ int bt_ascs_unregister(void)
	}

	err = bt_gatt_service_unregister(&ascs_svc);
	/* If unregistration was succesfull, make sure to reset ascs_attrs so it can be used for
	/* If unregistration was successful, make sure to reset ascs_attrs so it can be used for
	 * new registrations
	 */
	if (err != 0) {
+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,8 @@
#ifndef BT_ASCS_INTERNAL_H
#define BT_ASCS_INTERNAL_H

#include <stdint.h>

#include <zephyr/bluetooth/audio/audio.h>
#include <zephyr/bluetooth/audio/bap.h>
#include <zephyr/bluetooth/conn.h>
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
#include <zephyr/bluetooth/hci_types.h>
#include <zephyr/logging/log.h>
#include <zephyr/sys/check.h>
#include <zephyr/toolchain.h>

#include "audio_internal.h"

Loading