Back to home page

OSCL-LXR

 
 

    


0001 /* Firmware file reading and download helpers
0002  *
0003  * See copyright notice in main.c
0004  */
0005 #ifndef _ORINOCO_FW_H_
0006 #define _ORINOCO_FW_H_
0007 
0008 /* Forward declations */
0009 struct orinoco_private;
0010 
0011 int orinoco_download(struct orinoco_private *priv);
0012 
0013 #if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
0014 void orinoco_cache_fw(struct orinoco_private *priv, int ap);
0015 void orinoco_uncache_fw(struct orinoco_private *priv);
0016 #else
0017 #define orinoco_cache_fw(priv, ap) do { } while (0)
0018 #define orinoco_uncache_fw(priv) do { } while (0)
0019 #endif
0020 
0021 #endif /* _ORINOCO_FW_H_ */