• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/net/wireless/orinoco/
1/* 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
12/* Add scan results */
13void 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);
19
20#endif /* _ORINOCO_SCAN_H_ */
21