mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
Bluetooth: AMP: Remove dead code
Remove code which cannot execute. l2cap_conn_add for AMP_LINK might only be invoked when receiving data in l2cap_recv_acldata. But this case is checked in the first statement there. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
7a9898c6ff
commit
cbf54ad104
1 changed files with 0 additions and 5 deletions
|
@ -1527,17 +1527,12 @@ static struct l2cap_conn *l2cap_conn_add(struct hci_conn *hcon, u8 status)
|
||||||
BT_DBG("hcon %p conn %p hchan %p", hcon, conn, hchan);
|
BT_DBG("hcon %p conn %p hchan %p", hcon, conn, hchan);
|
||||||
|
|
||||||
switch (hcon->type) {
|
switch (hcon->type) {
|
||||||
case AMP_LINK:
|
|
||||||
conn->mtu = hcon->hdev->block_mtu;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case LE_LINK:
|
case LE_LINK:
|
||||||
if (hcon->hdev->le_mtu) {
|
if (hcon->hdev->le_mtu) {
|
||||||
conn->mtu = hcon->hdev->le_mtu;
|
conn->mtu = hcon->hdev->le_mtu;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/* fall through */
|
/* fall through */
|
||||||
|
|
||||||
default:
|
default:
|
||||||
conn->mtu = hcon->hdev->acl_mtu;
|
conn->mtu = hcon->hdev->acl_mtu;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue