aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2012-10-31 09:46:26 -0400
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2012-11-01 18:27:05 -0400
commitba6fc31727c07e11a7b700a9c17e91ab4bed2f4c (patch)
treeec7d8988ccb8f29aabf93dd91917089d61a25585 /net
parent612dfce9fbd2e564bcd656d4b7f7fa7d72966c47 (diff)
Bluetooth: trivial: Fix braces style and remove empty line
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/l2cap_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index d1728af8e84f..c2fbaf9c6ac8 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -6252,9 +6252,9 @@ void l2cap_connect_cfm(struct hci_conn *hcon, u8 status)
6252 conn = l2cap_conn_add(hcon, status); 6252 conn = l2cap_conn_add(hcon, status);
6253 if (conn) 6253 if (conn)
6254 l2cap_conn_ready(conn); 6254 l2cap_conn_ready(conn);
6255 } else 6255 } else {
6256 l2cap_conn_del(hcon, bt_to_errno(status)); 6256 l2cap_conn_del(hcon, bt_to_errno(status));
6257 6257 }
6258} 6258}
6259 6259
6260int l2cap_disconn_ind(struct hci_conn *hcon) 6260int l2cap_disconn_ind(struct hci_conn *hcon)