1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2020 Google Corporation 4 */ 5 6 #if IS_ENABLED(CONFIG_BT_MSFTEXT) 7 8 void msft_do_open(struct hci_dev *hdev); 9 void msft_do_close(struct hci_dev *hdev); 10 void msft_vendor_evt(struct hci_dev *hdev, struct sk_buff *skb); 11 12 #else 13 14 static inline void msft_do_open(struct hci_dev *hdev) {} 15 static inline void msft_do_close(struct hci_dev *hdev) {} 16 static inline void msft_vendor_evt(struct hci_dev *hdev, struct sk_buff *skb) {} 17 18 #endif 19