mirror of https://gitee.com/openkylin/linux.git
Bluetooth: Fix coding style in hci_sock.c
Follow the net subsystem rules. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
be7c2b99e9
commit
3bb3c7551c
|
@ -113,7 +113,8 @@ void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb)
|
||||||
flt = &hci_pi(sk)->filter;
|
flt = &hci_pi(sk)->filter;
|
||||||
|
|
||||||
if (!test_bit((bt_cb(skb)->pkt_type == HCI_VENDOR_PKT) ?
|
if (!test_bit((bt_cb(skb)->pkt_type == HCI_VENDOR_PKT) ?
|
||||||
0 : (bt_cb(skb)->pkt_type & HCI_FLT_TYPE_BITS), &flt->type_mask))
|
0 : (bt_cb(skb)->pkt_type & HCI_FLT_TYPE_BITS),
|
||||||
|
&flt->type_mask))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (bt_cb(skb)->pkt_type == HCI_EVENT_PKT) {
|
if (bt_cb(skb)->pkt_type == HCI_EVENT_PKT) {
|
||||||
|
@ -857,7 +858,8 @@ static int hci_sock_sendmsg(struct kiocb *iocb, struct socket *sock,
|
||||||
u16 ocf = hci_opcode_ocf(opcode);
|
u16 ocf = hci_opcode_ocf(opcode);
|
||||||
|
|
||||||
if (((ogf > HCI_SFLT_MAX_OGF) ||
|
if (((ogf > HCI_SFLT_MAX_OGF) ||
|
||||||
!hci_test_bit(ocf & HCI_FLT_OCF_BITS, &hci_sec_filter.ocf_mask[ogf])) &&
|
!hci_test_bit(ocf & HCI_FLT_OCF_BITS,
|
||||||
|
&hci_sec_filter.ocf_mask[ogf])) &&
|
||||||
!capable(CAP_NET_RAW)) {
|
!capable(CAP_NET_RAW)) {
|
||||||
err = -EPERM;
|
err = -EPERM;
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
Loading…
Reference in New Issue