From: Ebru Akagunduz Date: Thu, 10 Oct 2013 00:08:00 +0000 (+0300) Subject: Staging: rtl8187se: suspect code indent for conditional statements in r8185b_init.c X-Git-Tag: v3.13-rc1~170^2~392 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d83ce2ddb76c4a797121930262792e0d9c75e1d6;p=profile%2Fivi%2Fkernel-x86-ivi.git Staging: rtl8187se: suspect code indent for conditional statements in r8185b_init.c Fix checkpatch.pl issues with suspect code indent for conditional statements in r8185b_init.c Signed-off-by: Ebru Akagunduz Reviewed-by: Zach Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8187se/r8185b_init.c b/drivers/staging/rtl8187se/r8185b_init.c index 8b5704a..43383cf 100644 --- a/drivers/staging/rtl8187se/r8185b_init.c +++ b/drivers/staging/rtl8187se/r8185b_init.c @@ -135,7 +135,7 @@ static void PlatformIOWrite2Byte(struct net_device *dev, u32 offset, u16 data) static void PlatformIOWrite4Byte(struct net_device *dev, u32 offset, u32 data) { if (offset == PhyAddr) { - /* For Base Band configuration. */ + /* For Base Band configuration. */ unsigned char cmdByte; unsigned long dataBytes; unsigned char idx; @@ -155,7 +155,7 @@ static void PlatformIOWrite4Byte(struct net_device *dev, u32 offset, u32 data) /* NdisAcquireSpinLock( &(pDevice->IoSpinLock) ); */ for (idx = 0; idx < 30; idx++) { - /* Make sure command bit is clear before access it. */ + /* Make sure command bit is clear before access it. */ u1bTmp = PlatformIORead1Byte(dev, PhyAddr); if ((u1bTmp & BIT7) == 0) break;