Bluetooth: Rename l2cap_do_connect() to l2cap_chan_connect()

l2cap_chan_connect() is a much better name and reflects what this
functions is doing (or will do once socket dependence is removed from the
core).

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
Gustavo F. Padovan 2011-04-12 18:17:14 -03:00
parent b445003518
commit 77a74c7e08
3 changed files with 3 additions and 3 deletions

View file

@ -229,7 +229,7 @@ static int l2cap_sock_connect(struct socket *sock, struct sockaddr *addr, int al
l2cap_pi(sk)->psm = la.l2_psm;
l2cap_pi(sk)->dcid = la.l2_cid;
err = l2cap_do_connect(l2cap_pi(sk)->chan);
err = l2cap_chan_connect(l2cap_pi(sk)->chan);
if (err)
goto done;