Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chromeos/compat-wireless/drivers/net/wireless/orinoco/fw.h

Issue 5326002: Update compat-wireless to 2.6.36-5-spn (Closed) Base URL: http://git.chromium.org/git/kernel.git@master
Patch Set: Fixes for !ACK handling, missing local changes, log message fixes Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 */
9 struct orinoco_private;
10
11 int orinoco_download(struct orinoco_private *priv);
12
13 #if defined(CONFIG_HERMES_CACHE_FW_ON_INIT) || defined(CONFIG_PM_SLEEP)
14 void orinoco_cache_fw(struct orinoco_private *priv, int ap);
15 void orinoco_uncache_fw(struct orinoco_private *priv);
16 #else
17 #define orinoco_cache_fw(priv, ap) do { } while(0)
18 #define orinoco_uncache_fw(priv) do { } while (0)
19 #endif
20
21 #endif /* _ORINOCO_FW_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698