|
@@ -882,7 +882,7 @@ static int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type)
|
|
int lm = 0;
|
|
int lm = 0;
|
|
|
|
|
|
if (type != SCO_LINK && type != ESCO_LINK)
|
|
if (type != SCO_LINK && type != ESCO_LINK)
|
|
- return 0;
|
|
|
|
|
|
+ return -EINVAL;
|
|
|
|
|
|
BT_DBG("hdev %s, bdaddr %s", hdev->name, batostr(bdaddr));
|
|
BT_DBG("hdev %s, bdaddr %s", hdev->name, batostr(bdaddr));
|
|
|
|
|
|
@@ -908,7 +908,7 @@ static int sco_connect_cfm(struct hci_conn *hcon, __u8 status)
|
|
BT_DBG("hcon %p bdaddr %s status %d", hcon, batostr(&hcon->dst), status);
|
|
BT_DBG("hcon %p bdaddr %s status %d", hcon, batostr(&hcon->dst), status);
|
|
|
|
|
|
if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
|
|
if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
|
|
- return 0;
|
|
|
|
|
|
+ return -EINVAL;
|
|
|
|
|
|
if (!status) {
|
|
if (!status) {
|
|
struct sco_conn *conn;
|
|
struct sco_conn *conn;
|
|
@@ -927,7 +927,7 @@ static int sco_disconn_cfm(struct hci_conn *hcon, __u8 reason)
|
|
BT_DBG("hcon %p reason %d", hcon, reason);
|
|
BT_DBG("hcon %p reason %d", hcon, reason);
|
|
|
|
|
|
if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
|
|
if (hcon->type != SCO_LINK && hcon->type != ESCO_LINK)
|
|
- return 0;
|
|
|
|
|
|
+ return -EINVAL;
|
|
|
|
|
|
sco_conn_del(hcon, bt_err(reason));
|
|
sco_conn_del(hcon, bt_err(reason));
|
|
|
|
|