blob: 27281fb0a6dc02f529b4ea1edf2fb29e2a6903be [file] [log] [blame]
David Kilroyfb791b12009-02-04 23:05:50 +00001/* Helpers for managing scan queues
2 *
3 * See copyright notice in main.c
4 */
5#ifndef _ORINOCO_SCAN_H_
6#define _ORINOCO_SCAN_H_
7
8/* Forward declarations */
9struct orinoco_private;
10struct agere_ext_scan_info;
11
David Kilroyfb791b12009-02-04 23:05:50 +000012/* Add scan results */
David Kilroyc63cdbe2009-06-18 23:21:33 +010013void orinoco_add_extscan_result(struct orinoco_private *priv,
14 struct agere_ext_scan_info *atom,
15 size_t len);
16void orinoco_add_hostscan_results(struct orinoco_private *dev,
17 unsigned char *buf,
18 size_t len);
David Kilroycf634952010-11-24 20:33:02 +000019void orinoco_scan_done(struct orinoco_private *priv, bool abort);
David Kilroyfb791b12009-02-04 23:05:50 +000020
21#endif /* _ORINOCO_SCAN_H_ */