/* * Copyright (c) 2017 Redpine Signals Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef __RSI_HEADER_H__ #define __RSI_HEADER_H__ #include <linux/skbuff.h> /* HAL queue information */ #define RSI_COEX_Q … #define RSI_BT_Q … #define RSI_WLAN_Q … #define RSI_WIFI_MGMT_Q … #define RSI_WIFI_DATA_Q … #define RSI_BT_MGMT_Q … #define RSI_BT_DATA_Q … enum rsi_coex_queues { … }; enum rsi_host_intf { … }; struct rsi_proto_ops { … }; struct rsi_mod_ops { … }; extern const struct rsi_mod_ops rsi_bt_ops; #endif