1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2021 Intel Corporation
4  */
5 
6 #ifndef __IWLMEI_INTERNAL_H_
7 #define __IWLMEI_INTERNAL_H_
8 
9 #include <uapi/linux/if_ether.h>
10 #include <linux/netdevice.h>
11 
12 #include "sap.h"
13 
14 rx_handler_result_t iwl_mei_rx_filter(struct sk_buff *skb,
15 				      const struct iwl_sap_oob_filters *filters,
16 				      bool *pass_to_csme);
17 
18 void iwl_mei_add_data_to_ring(struct sk_buff *skb, bool cb_tx);
19 
20 #endif /* __IWLMEI_INTERNAL_H_ */
21