Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: vt6656: fix indentation in if statement

Dave Jones pointed out that commit
302433daf47aeb7d21d66e55fb84d6a8fffd4aed (staging: vt6656: device.h
Remove typedef enum __device_init_type.), improperly indented a line to
make it look like it was under the if line above it, but it wasn't.

So fix this up.

Reported-by: Dave Jones <davej@redhat.com>
Cc: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

+1 -1
+1 -1
drivers/staging/vt6656/main_usb.c
··· 409 409 410 410 if (pDevice->abyCCKPwrTbl[ii] == 0) 411 411 pDevice->abyCCKPwrTbl[ii] = pDevice->byCCKPwr; 412 - pDevice->abyOFDMPwrTbl[ii] = 412 + pDevice->abyOFDMPwrTbl[ii] = 413 413 pDevice->abyEEPROM[ii + EEP_OFS_OFDM_PWR_TBL]; 414 414 if (pDevice->abyOFDMPwrTbl[ii] == 0) 415 415 pDevice->abyOFDMPwrTbl[ii] = pDevice->byOFDMPwrG;