diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-05-17 23:43:57 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-21 21:48:16 -0400 |
commit | 6821783271aaf541504ff8a138184fcc83fa282b (patch) | |
tree | b072058ab48ae1aac079697872054700cd5bb4db /drivers/net/wireless/b43/b43.h | |
parent | e48b0eeb0ab508021b654a45f332b30cac2163b9 (diff) | |
download | blackbird-op-linux-6821783271aaf541504ff8a138184fcc83fa282b.tar.gz blackbird-op-linux-6821783271aaf541504ff8a138184fcc83fa282b.zip |
b43: Allow running without PCM firmware
This patch adds code to allow running the device without PCM firmware loaded.
Without PCM firmware we don't have hardware accelerated crypto on
devices with a core rev <= 10.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/b43.h')
-rw-r--r-- | drivers/net/wireless/b43/b43.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h index 00468594b456..f588dfa9c1d4 100644 --- a/drivers/net/wireless/b43/b43.h +++ b/drivers/net/wireless/b43/b43.h @@ -774,6 +774,10 @@ struct b43_firmware { /* Set to true, if we are using an opensource firmware. */ bool opensource; + /* Set to true, if the core needs a PCM firmware, but + * we failed to load one. This is always false for + * core rev > 10, as these don't need PCM firmware. */ + bool pcm_request_failed; }; /* Device (802.11 core) initialization status. */ |