From 73a3ee4234118c850704c0e8ec9963ba15d36b47 Mon Sep 17 00:00:00 2001 From: Emil Gydesen Date: Sat, 24 May 2025 16:32:48 +0200 Subject: [PATCH] Bluetooth: CSIP: Remove excess + at start of link for test_k Removed the excess +. Signed-off-by: Emil Gydesen --- subsys/bluetooth/audio/csip_set_member.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/audio/csip_set_member.c b/subsys/bluetooth/audio/csip_set_member.c index af461da12c20..96139b3b8cd1 100644 --- a/subsys/bluetooth/audio/csip_set_member.c +++ b/subsys/bluetooth/audio/csip_set_member.c @@ -172,7 +172,7 @@ static int sirk_encrypt(struct bt_conn *conn, const struct bt_csip_sirk *sirk, /* test_k is from the sample data from A.2 in the CSIS spec */ static const uint8_t test_k[] = { /* Sample data is in big-endian, we need it in little-endian. */ -+ REVERSE_ARGS(0x67, 0x6e, 0x1b, 0x9b, + REVERSE_ARGS(0x67, 0x6e, 0x1b, 0x9b, 0xd4, 0x48, 0x69, 0x6f, 0x06, 0x1e, 0xc6, 0x22, 0x3c, 0xe5, 0xce, 0xd9) };