David Kilroy | fb791b1 | 2009-02-04 23:05:50 +0000 | [diff] [blame] | 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 */ |
| 9 | struct orinoco_private; |
| 10 | struct agere_ext_scan_info; |
| 11 | |
David Kilroy | fb791b1 | 2009-02-04 23:05:50 +0000 | [diff] [blame] | 12 | /* Add scan results */ |
David Kilroy | c63cdbe | 2009-06-18 23:21:33 +0100 | [diff] [blame] | 13 | void orinoco_add_extscan_result(struct orinoco_private *priv, |
| 14 | struct agere_ext_scan_info *atom, |
| 15 | size_t len); |
| 16 | void orinoco_add_hostscan_results(struct orinoco_private *dev, |
| 17 | unsigned char *buf, |
| 18 | size_t len); |
David Kilroy | fb791b1 | 2009-02-04 23:05:50 +0000 | [diff] [blame] | 19 | |
| 20 | #endif /* _ORINOCO_SCAN_H_ */ |