Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 300229f9 authored by Gustavo Padovan's avatar Gustavo Padovan
Browse files

Bluetooth: Rename __l2cap_connect() to l2cap_connect()



Use of "__" usually means we need to call the function with a lock held,
which is not the case here.

Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 2dc4e510
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3391,7 +3391,7 @@ static inline int l2cap_command_rej(struct l2cap_conn *conn,
	return 0;
}

static void __l2cap_connect(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd,
static void l2cap_connect(struct l2cap_conn *conn, struct l2cap_cmd_hdr *cmd,
			  u8 *data, u8 rsp_code, u8 amp_id)
{
	struct l2cap_conn_req *req = (struct l2cap_conn_req *) data;
@@ -3512,7 +3512,7 @@ sendresp:
static int l2cap_connect_req(struct l2cap_conn *conn,
			     struct l2cap_cmd_hdr *cmd, u8 *data)
{
	__l2cap_connect(conn, cmd, data, L2CAP_CONN_RSP, 0);
	l2cap_connect(conn, cmd, data, L2CAP_CONN_RSP, 0);
	return 0;
}