]> Pileus Git - ~andy/linux/commitdiff
Staging: bcm: Fixed warning 'space required around '=''.
authorTülin İzer <tulinizer@gmail.com>
Wed, 15 May 2013 00:41:37 +0000 (03:41 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 May 2013 22:48:55 +0000 (15:48 -0700)
This patch fixes warning 'space required around '='' found by
checkpatch in driver bcm.

Signed-off-by: Tülin İzer <tulinizer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/InterfaceIdleMode.c

index 30571739916d6ddba8d3a3ede14b20efc680d8dc..8549404a492a40442411314271f8e5c68493da64 100644 (file)
@@ -155,7 +155,7 @@ static int InterfaceAbortIdlemode(struct bcm_mini_adapter *Adapter, unsigned int
        unsigned long timeout = 0, itr = 0;
 
        int     lenwritten = 0;
-       unsigned char aucAbortPattern[8]={0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
+       unsigned char aucAbortPattern[8] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
        struct bcm_interface_adapter *psInterfaceAdapter = Adapter->pvInterfaceAdapter;
 
        /* Abort Bus suspend if its already suspended */
@@ -216,7 +216,7 @@ static int InterfaceAbortIdlemode(struct bcm_mini_adapter *Adapter, unsigned int
 
                /* mdelay(25); */
 
-               timeout= jiffies +  msecs_to_jiffies(50) ;
+               timeout = jiffies +  msecs_to_jiffies(50) ;
                while( timeout > jiffies )
                {
                        itr++ ;
@@ -273,7 +273,7 @@ void InterfaceHandleShutdownModeWakeup(struct bcm_mini_adapter *Adapter)
        {
                /* clear idlemode interrupt. */
                uiRegVal = 0;
-               Status =wrmalt(Adapter, DEBUG_INTERRUPT_GENERATOR_REGISTOR, &uiRegVal, sizeof(uiRegVal));
+               Status = wrmalt(Adapter, DEBUG_INTERRUPT_GENERATOR_REGISTOR, &uiRegVal, sizeof(uiRegVal));
                if(Status)
                {
                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0,"WRM to DEBUG_INTERRUPT_GENERATOR_REGISTOR Failed with err :%d", Status);