dect
/
linux-2.6
Archived
13
0
Fork 0

Bluetooth: Rename hidp_find_connection()

hidp_get_connection() makes more sense because we hold a reference to the
connection inside this function.

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
Gustavo F. Padovan 2011-10-07 01:29:51 -03:00
parent 81b25cd043
commit 3e90dc86f4
1 changed files with 2 additions and 2 deletions

View File

@ -783,7 +783,7 @@ static int hidp_session(void *arg)
return 0;
}
static struct hci_conn *hidp_find_connection(struct hidp_session *session)
static struct hci_conn *hidp_get_connection(struct hidp_session *session)
{
bdaddr_t *src = &bt_sk(session->ctrl_sock->sk)->src;
bdaddr_t *dst = &bt_sk(session->ctrl_sock->sk)->dst;
@ -995,7 +995,7 @@ int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock,
return -ENOMEM;
}
session->conn = hidp_find_connection(session);
session->conn = hidp_get_connection(session);
if (!session->conn) {
err = -ENOTCONN;
goto failed;