diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-05-17 17:43:57 -0400 |
---|---|---|
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) |
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 { | |||
774 | 774 | ||
775 | /* Set to true, if we are using an opensource firmware. */ | 775 | /* Set to true, if we are using an opensource firmware. */ |
776 | bool opensource; | 776 | bool opensource; |
777 | /* Set to true, if the core needs a PCM firmware, but | ||
778 | * we failed to load one. This is always false for | ||
779 | * core rev > 10, as these don't need PCM firmware. */ | ||
780 | bool pcm_request_failed; | ||
777 | }; | 781 | }; |
778 | 782 | ||
779 | /* Device (802.11 core) initialization status. */ | 783 | /* Device (802.11 core) initialization status. */ |