aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/sco.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/sco.c')
-rw-r--r--net/bluetooth/sco.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c
index 7f10f97cd697..51ae0c3e470a 100644
--- a/net/bluetooth/sco.c
+++ b/net/bluetooth/sco.c
@@ -902,7 +902,7 @@ static int sco_connect_cfm(struct hci_conn *hcon, __u8 status)
902 return 0; 902 return 0;
903} 903}
904 904
905static int sco_disconn_ind(struct hci_conn *hcon, __u8 reason) 905static int sco_disconn_cfm(struct hci_conn *hcon, __u8 reason)
906{ 906{
907 BT_DBG("hcon %p reason %d", hcon, reason); 907 BT_DBG("hcon %p reason %d", hcon, reason);
908 908
@@ -985,7 +985,7 @@ static struct hci_proto sco_hci_proto = {
985 .id = HCI_PROTO_SCO, 985 .id = HCI_PROTO_SCO,
986 .connect_ind = sco_connect_ind, 986 .connect_ind = sco_connect_ind,
987 .connect_cfm = sco_connect_cfm, 987 .connect_cfm = sco_connect_cfm,
988 .disconn_ind = sco_disconn_ind, 988 .disconn_cfm = sco_disconn_cfm,
989 .recv_scodata = sco_recv_scodata 989 .recv_scodata = sco_recv_scodata
990}; 990};
991 991