From: Prasanna Karthik <[email protected]>

Removed {} for single statement if block

Signed-off-by: Prasanna Karthik <[email protected]>
---
 drivers/staging/wilc1000/fifo_buffer.c |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/wilc1000/fifo_buffer.c 
b/drivers/staging/wilc1000/fifo_buffer.c
index b6c07cf..be38493 100644
--- a/drivers/staging/wilc1000/fifo_buffer.c
+++ b/drivers/staging/wilc1000/fifo_buffer.c
@@ -31,11 +31,10 @@ u32 FIFO_DeInit(tHANDLE hFifo)
        u32 u32Error = 0;
        tstrFifoHandler *pstrFifoHandler = (tstrFifoHandler *) hFifo;
        if (pstrFifoHandler) {
-               if (pstrFifoHandler->pu8Buffer) {
+               if (pstrFifoHandler->pu8Buffer)
                        WILC_FREE (pstrFifoHandler->pu8Buffer);
-               } else {
+               else
                        u32Error = 1;
-               }
 
                WILC_FREE (pstrFifoHandler);
        } else {
@@ -52,11 +51,11 @@ u32 FIFO_ReadBytes(tHANDLE hFifo, u8 *pu8Buffer, u32 
u32BytesToRead, u32 *pu32By
                if (pstrFifoHandler->u32TotalBytes) {
                        down(&pstrFifoHandler->SemBuffer);
 
-                       if (u32BytesToRead > pstrFifoHandler->u32TotalBytes) {
+                       if (u32BytesToRead > pstrFifoHandler->u32TotalBytes)
                                *pu32BytesRead = pstrFifoHandler->u32TotalBytes;
-                       } else {
+                       else
                                *pu32BytesRead = u32BytesToRead;
-                       }
+
                        if ((pstrFifoHandler->u32ReadOffset + u32BytesToRead) 
<= pstrFifoHandler->u32BufferLength) {
                                WILC_memcpy(pu8Buffer, 
pstrFifoHandler->pu8Buffer + pstrFifoHandler->u32ReadOffset,
                                            *pu32BytesRead);
-- 
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to