linux/drivers/staging/wilc1000/wilc_wfi_cfgoperations.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*!
   3 *  @file       wilc_wfi_cfgoperations.h
   4 *  @brief      Definitions for the network module
   5 *  @author     syounan
   6 *  @sa         wilc_oswrapper.h top level OS wrapper file
   7 *  @date       31 Aug 2010
   8 *  @version    1.0
   9 */
  10#ifndef NM_WFI_CFGOPERATIONS
  11#define NM_WFI_CFGOPERATIONS
  12#include "wilc_wfi_netdevice.h"
  13
  14struct wireless_dev *wilc_create_wiphy(struct net_device *net, struct device *dev);
  15void wilc_free_wiphy(struct net_device *net);
  16int wilc_deinit_host_int(struct net_device *net);
  17int wilc_init_host_int(struct net_device *net);
  18void WILC_WFI_monitor_rx(u8 *buff, u32 size);
  19int WILC_WFI_deinit_mon_interface(void);
  20struct net_device *WILC_WFI_init_mon_interface(const char *name, struct net_device *real_dev);
  21void wilc_mgmt_frame_register(struct wiphy *wiphy, struct wireless_dev *wdev,
  22                              u16 frame_type, bool reg);
  23
  24#endif
  25