1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries. 4 * All rights reserved. 5 */ 6 7 #ifndef NM_WFI_CFGOPERATIONS 8 #define NM_WFI_CFGOPERATIONS 9 #include "wilc_wfi_netdevice.h" 10 11 struct wireless_dev *wilc_create_wiphy(struct net_device *net, 12 struct device *dev); 13 void wilc_free_wiphy(struct net_device *net); 14 int wilc_deinit_host_int(struct net_device *net); 15 int wilc_init_host_int(struct net_device *net); 16 void wilc_wfi_monitor_rx(u8 *buff, u32 size); 17 int wilc_wfi_deinit_mon_interface(void); 18 struct net_device *wilc_wfi_init_mon_interface(const char *name, 19 struct net_device *real_dev); 20 void wilc_mgmt_frame_register(struct wiphy *wiphy, struct wireless_dev *wdev, 21 u16 frame_type, bool reg); 22 23 #endif 24