fw.h 382 B

12345678910111213141516
  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. /* Forward declations */
  8. struct orinoco_private;
  9. int orinoco_download(struct orinoco_private *priv);
  10. void orinoco_cache_fw(struct orinoco_private *priv, int ap);
  11. void orinoco_uncache_fw(struct orinoco_private *priv);
  12. #endif /* _ORINOCO_FW_H_ */