Merge branch 'for-linus-4.7' of git://git.kernel.org/pub/scm/linux/kernel/git/mason...
[deliverable/linux.git] / drivers / net / wireless / intersil / orinoco / fw.h
CommitLineData
37a2e566
DK
1/* Firmware file reading and download helpers
2 *
3 * See copyright notice in main.c
4 */
5#ifndef _ORINOCO_FW_H_
6#define _ORINOCO_FW_H_
7
8/* Forward declations */
9struct orinoco_private;
10
11int orinoco_download(struct orinoco_private *priv);
12
2bfc5cb5 13#if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
37a2e566
DK
14void orinoco_cache_fw(struct orinoco_private *priv, int ap);
15void orinoco_uncache_fw(struct orinoco_private *priv);
2bfc5cb5 16#else
933d5943 17#define orinoco_cache_fw(priv, ap) do { } while (0)
2bfc5cb5
AB
18#define orinoco_uncache_fw(priv) do { } while (0)
19#endif
37a2e566
DK
20
21#endif /* _ORINOCO_FW_H_ */
This page took 0.545175 seconds and 5 git commands to generate.