Back to home page

OSCL-LXR

 
 

    


0001 /* Helpers for managing scan queues
0002  *
0003  * See copyright notice in main.c
0004  */
0005 #ifndef _ORINOCO_SCAN_H_
0006 #define _ORINOCO_SCAN_H_
0007 
0008 /* Forward declarations */
0009 struct orinoco_private;
0010 struct agere_ext_scan_info;
0011 
0012 /* Add scan results */
0013 void orinoco_add_extscan_result(struct orinoco_private *priv,
0014                 struct agere_ext_scan_info *atom,
0015                 size_t len);
0016 void orinoco_add_hostscan_results(struct orinoco_private *dev,
0017                   unsigned char *buf,
0018                   size_t len);
0019 void orinoco_scan_done(struct orinoco_private *priv, bool abort);
0020 
0021 #endif /* _ORINOCO_SCAN_H_ */