Bluetooth: OTS: Make L2CAP channel recv callback static

Make the OTS module L2CAP channel recv callback a static function.

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2021-06-04 16:41:33 +02:00 committed by Christopher Friedt
parent 9f989a0b00
commit 921644c5a6
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ static void l2cap_sent(struct bt_l2cap_chan *chan)
}
}
int l2cap_recv(struct bt_l2cap_chan *chan, struct net_buf *buf)
static int l2cap_recv(struct bt_l2cap_chan *chan, struct net_buf *buf)
{
struct bt_gatt_ots_l2cap *l2cap_ctx;