diff options
author | Meng Yu <yumeng18@huawei.com> | 2021-04-01 09:50:39 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2021-04-02 12:03:04 +0300 |
commit | 149b3f13b4b11175c81105f32b048260e63fdc34 (patch) | |
tree | aa84d5bce6aee5fc44971ab9878b4dd63f625899 /net/bluetooth/l2cap_core.c | |
parent | 82a1242619d0db39ca710538fa2a53623a1022c8 (diff) | |
download | linux-149b3f13b4b11175c81105f32b048260e63fdc34.tar.xz |
Bluetooth: Coding style fix
1. Add space when needed;
2. Block comments style fix;
3. Move open brace '{' following function definitions to the next line;
4. Remove unnecessary braces '{}' for single statement blocks.
Signed-off-by: Meng Yu <yumeng18@huawei.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/l2cap_core.c')
-rw-r--r-- | net/bluetooth/l2cap_core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index a3b1d40b8750..140669456b6f 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -652,7 +652,7 @@ void l2cap_chan_del(struct l2cap_chan *chan, int err) if (test_bit(CONF_NOT_COMPLETE, &chan->conf_state)) return; - switch(chan->mode) { + switch (chan->mode) { case L2CAP_MODE_BASIC: break; @@ -7770,7 +7770,8 @@ static struct l2cap_conn *l2cap_conn_add(struct hci_conn *hcon) return conn; } -static bool is_valid_psm(u16 psm, u8 dst_type) { +static bool is_valid_psm(u16 psm, u8 dst_type) +{ if (!psm) return false; |