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