diff options
author | Meng Yu <yumeng18@huawei.com> | 2021-04-01 14:50:39 +0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2021-04-02 11:03:04 +0200 |
commit | 149b3f13b4b11175c81105f32b048260e63fdc34 (patch) | |
tree | aa84d5bce6aee5fc44971ab9878b4dd63f625899 /net/bluetooth/6lowpan.c | |
parent | 82a1242619d0db39ca710538fa2a53623a1022c8 (diff) |
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/6lowpan.c')
-rw-r--r-- | net/bluetooth/6lowpan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 19f7e42db1b0..97617d02c8f9 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c @@ -205,8 +205,7 @@ static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev, } } - /* use the neighbour cache for matching addresses assigned by SLAAC - */ + /* use the neighbour cache for matching addresses assigned by SLAAC */ neigh = __ipv6_neigh_lookup(dev->netdev, nexthop); if (neigh) { list_for_each_entry_rcu(peer, &dev->peers, list) { |