blob: 5aa9130e1f8ab3293e93f522c36c49ef088db020 [file] [log] [blame]
Miao-chen Chou145373c2020-04-03 21:44:01 +02001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2020 Google Corporation
4 */
5
6#if IS_ENABLED(CONFIG_BT_MSFTEXT)
7
8void msft_do_open(struct hci_dev *hdev);
9void msft_do_close(struct hci_dev *hdev);
10void msft_vendor_evt(struct hci_dev *hdev, struct sk_buff *skb);
11
12#else
13
14static inline void msft_do_open(struct hci_dev *hdev) {}
15static inline void msft_do_close(struct hci_dev *hdev) {}
16static inline void msft_vendor_evt(struct hci_dev *hdev, struct sk_buff *skb) {}
17
18#endif