staging: vt6656: s_vFillTxKey fix indentation of memcpy

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-05-25 21:36:28 +01:00 committed by Greg Kroah-Hartman
parent 3b6cee7be3
commit 5cb5bff703
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ static void s_vFillTxKey(struct vnt_private *pDevice,
pTransmitKey->uKeyLength); pTransmitKey->uKeyLength);
if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) { if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
memcpy(pbyBuf+8, (u8 *)&rev_iv_counter, 3); memcpy(pbyBuf+8, (u8 *)&rev_iv_counter, 3);
memcpy(pbyBuf+11, pTransmitKey->abyKey, memcpy(pbyBuf+11, pTransmitKey->abyKey,
pTransmitKey->uKeyLength); pTransmitKey->uKeyLength);
} }