aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/mgmt.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 205574edff20..958f764cc6ab 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1911,8 +1911,15 @@ static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
1911 rp.addr.type = cp->addr.type; 1911 rp.addr.type = cp->addr.type;
1912 1912
1913 if (IS_ERR(conn)) { 1913 if (IS_ERR(conn)) {
1914 int status;
1915
1916 if (PTR_ERR(conn) == -EBUSY)
1917 status = MGMT_STATUS_BUSY;
1918 else
1919 status = MGMT_STATUS_CONNECT_FAILED;
1920
1914 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE, 1921 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1915 MGMT_STATUS_CONNECT_FAILED, &rp, 1922 status, &rp,
1916 sizeof(rp)); 1923 sizeof(rp));
1917 goto unlock; 1924 goto unlock;
1918 } 1925 }