blob: 2290f0845d598f389bb2d732d7f89ce64351f611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Firmware file reading and download helpers
*
* See copyright notice in main.c
*/
#ifndef _ORINOCO_FW_H_
#define _ORINOCO_FW_H_
/* Forward declations */
struct orinoco_private;
int orinoco_download(struct orinoco_private *priv);
void orinoco_cache_fw(struct orinoco_private *priv, int ap);
void orinoco_uncache_fw(struct orinoco_private *priv);
#endif /* _ORINOCO_FW_H_ */
|