aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/net/bluetooth/hci_sock.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2020-03-19 21:33:27 -0700
committerDavid S. Miller <davem@davemloft.net>2020-03-19 21:33:27 -0700
commit43861da75e7cb3a97231b460d1203396c2d06642 (patch)
tree3a493e4e31b8079d38f9971b4abf2adda6ae3d4f /include/net/bluetooth/hci_sock.h
parentMerge branch 'veth-xdp-stats' (diff)
parentBluetooth: Do not cancel advertising when starting a scan (diff)
downloadwireguard-linux-43861da75e7cb3a97231b460d1203396c2d06642.tar.xz
wireguard-linux-43861da75e7cb3a97231b460d1203396c2d06642.zip
Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next
Johan Hedberg says: ==================== pull request: bluetooth-next 2020-03-19 Here's the main bluetooth-next pull request for the 5.7 kernel. - Added wideband speech support to mgmt and the ability for HCI drivers to declare support for it. - Added initial support for L2CAP Enhanced Credit Based Mode - Fixed suspend handling for several use cases - Fixed Extended Advertising related issues - Added support for Realtek 8822CE device - Added DT bindings for QTI chip WCN3991 - Cleanups to replace zero-length arrays with flexible-array members - Several other smaller cleanups & fixes ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/bluetooth/hci_sock.h')
-rw-r--r--include/net/bluetooth/hci_sock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/bluetooth/hci_sock.h b/include/net/bluetooth/hci_sock.h
index 8e9138acdae1..9352bb1bf34c 100644
--- a/include/net/bluetooth/hci_sock.h
+++ b/include/net/bluetooth/hci_sock.h
@@ -144,19 +144,19 @@ struct hci_dev_req {
struct hci_dev_list_req {
__u16 dev_num;
- struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
+ struct hci_dev_req dev_req[]; /* hci_dev_req structures */
};
struct hci_conn_list_req {
__u16 dev_id;
__u16 conn_num;
- struct hci_conn_info conn_info[0];
+ struct hci_conn_info conn_info[];
};
struct hci_conn_info_req {
bdaddr_t bdaddr;
__u8 type;
- struct hci_conn_info conn_info[0];
+ struct hci_conn_info conn_info[];
};
struct hci_auth_info_req {