diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-02-03 09:48:38 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-02-29 15:19:28 -0500 |
commit | 9404ef34e4747228717d6e22ce3827ed366ccf41 (patch) | |
tree | 90f4a51af46519e42dcd638a3344ee664db539ec /drivers/net/wireless/rt2x00/Kconfig | |
parent | adfdbb79c06154cd3cc7b5983106ace324aa3b02 (diff) |
rt2x00: Driver requiring firmware should select crc algo
The driver should select what CRC algorithm is required
when performing a checksum on the firmware.
rt61pci & rt73usb require crc-itu-t
rt2800pci & rt2800usb require crc-ccitt
Legacy 2800pci/usb driver uses crc-itu-t + bit order reversion,
but that is just inefficient especially since the end result is
the same as a different algorithm which is also available as library. ;)
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/Kconfig')
-rw-r--r-- | drivers/net/wireless/rt2x00/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/Kconfig b/drivers/net/wireless/rt2x00/Kconfig index da05b1faf60d..28f3e5e94ab6 100644 --- a/drivers/net/wireless/rt2x00/Kconfig +++ b/drivers/net/wireless/rt2x00/Kconfig | |||
@@ -28,6 +28,7 @@ config RT2X00_LIB_USB | |||
28 | config RT2X00_LIB_FIRMWARE | 28 | config RT2X00_LIB_FIRMWARE |
29 | boolean | 29 | boolean |
30 | depends on RT2X00_LIB | 30 | depends on RT2X00_LIB |
31 | select CRC_CCITT | ||
31 | select CRC_ITU_T | 32 | select CRC_ITU_T |
32 | select FW_LOADER | 33 | select FW_LOADER |
33 | 34 | ||