1 /* 2 * Copyright (c) 2016 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #define BT_HCI_VS_HW_PLAT 0 8 #define BT_HCI_VS_HW_VAR 0 9 10 /* Map vendor command handler directly to common implementation */ hci_vendor_cmd_handle(uint16_t ocf,struct net_buf * cmd,struct net_buf ** evt)11inline int hci_vendor_cmd_handle(uint16_t ocf, struct net_buf *cmd, 12 struct net_buf **evt) 13 { 14 return hci_vendor_cmd_handle_common(ocf, cmd, evt); 15 } 16