PageRenderTime 14ms CodeModel.GetById 9ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/net/wireless/orinoco/scan.h

https://bitbucket.org/slukk/jb-tsm-kernel-4.2
C Header | 21 lines | 12 code | 3 blank | 6 comment | 0 complexity | 83480e3e9209b0ecd60473c23c2398c5 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
 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);
19void orinoco_scan_done(struct orinoco_private *priv, bool abort);
20
21#endif /* _ORINOCO_SCAN_H_ */