|
@@ -2588,7 +2588,7 @@ static inline int l2cap_command_rej(struct l2cap_conn *conn, struct l2cap_cmd_hd
|
|
|
|
|
|
if ((conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_SENT) &&
|
|
|
cmd->ident == conn->info_ident) {
|
|
|
- __cancel_delayed_work(&conn->info_timer);
|
|
|
+ cancel_delayed_work(&conn->info_timer);
|
|
|
|
|
|
conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
|
|
|
conn->info_ident = 0;
|
|
@@ -3135,7 +3135,7 @@ static inline int l2cap_information_rsp(struct l2cap_conn *conn, struct l2cap_cm
|
|
|
conn->info_state & L2CAP_INFO_FEAT_MASK_REQ_DONE)
|
|
|
return 0;
|
|
|
|
|
|
- __cancel_delayed_work(&conn->info_timer);
|
|
|
+ cancel_delayed_work(&conn->info_timer);
|
|
|
|
|
|
if (result != L2CAP_IR_SUCCESS) {
|
|
|
conn->info_state |= L2CAP_INFO_FEAT_MASK_REQ_DONE;
|
|
@@ -4509,7 +4509,7 @@ int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)
|
|
|
|
|
|
if (hcon->type == LE_LINK) {
|
|
|
smp_distribute_keys(conn, 0);
|
|
|
- __cancel_delayed_work(&conn->security_timer);
|
|
|
+ cancel_delayed_work(&conn->security_timer);
|
|
|
}
|
|
|
|
|
|
rcu_read_lock();
|