rsi: Correct RSI_NEEDED_HEADROOM in mac80211_attach.

Currently, RSI_NEEDED_HEADROOM is '80' for rsi driver, which is wrong.
As per rsi internal frame format, the RSI_NEEDED_HEADROOM shall be '84',
which is 64(dword_align) + 4(extended_desc) + 16(frame_desc).
Hence, corrected the needed headroom.

Signed-off-by: Amol Hanwate <amol.hanwate@redpinesignals.com>
Signed-off-by: Siva Rebbagondla <siva.rebbagondla@redpinesignals.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Amol Hanwate 2018-07-16 19:09:35 +05:30 committed by Kalle Valo
parent f5fbce65ab
commit abbe87d339
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
#include "rsi_main.h" #include "rsi_main.h"
#define MAX_MGMT_PKT_SIZE 512 #define MAX_MGMT_PKT_SIZE 512
#define RSI_NEEDED_HEADROOM 80 #define RSI_NEEDED_HEADROOM 84
#define RSI_RCV_BUFFER_LEN 2000 #define RSI_RCV_BUFFER_LEN 2000
#define RSI_11B_MODE 0 #define RSI_11B_MODE 0