]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: vt6656: fix indentation in if statement
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Feb 2014 18:10:34 +0000 (10:10 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Feb 2014 18:10:34 +0000 (10:10 -0800)
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>
drivers/staging/vt6656/main_usb.c

index 58edcae74efcf6d5395a2d816ce86456750edadd..6bd27cf43af7e922b3c4fcd353091d69a8512d1a 100644 (file)
@@ -409,7 +409,7 @@ static int device_init_registers(struct vnt_private *pDevice)
 
                if (pDevice->abyCCKPwrTbl[ii] == 0)
                        pDevice->abyCCKPwrTbl[ii] = pDevice->byCCKPwr;
-                       pDevice->abyOFDMPwrTbl[ii] =
+               pDevice->abyOFDMPwrTbl[ii] =
                                pDevice->abyEEPROM[ii + EEP_OFS_OFDM_PWR_TBL];
                if (pDevice->abyOFDMPwrTbl[ii] == 0)
                        pDevice->abyOFDMPwrTbl[ii] = pDevice->byOFDMPwrG;