]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: rtl8712: Match alignment with open parenthesis.
authorVarsha Rao <rvarsha016@gmail.com>
Sat, 18 Feb 2017 14:33:07 +0000 (20:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:01 +0000 (09:17 +0100)
Matched function arguments alignment with its open parenthesis. This patch
fixes the following checkpatch issue:

CHECK: Alignment should match open parenthesis

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/os_intfs.c

index cbe4de05d26b9a83d1beec9e72d427244f1552e7..8a80def931b1b76613a2526b3b1303362d1a219e 100644 (file)
@@ -392,7 +392,7 @@ static int netdev_open(struct net_device *pnetdev)
                if (!r8712_initmac)
                        /* Use the mac address stored in the Efuse */
                        memcpy(pnetdev->dev_addr,
-                               padapter->eeprompriv.mac_addr, ETH_ALEN);
+                              padapter->eeprompriv.mac_addr, ETH_ALEN);
                else {
                        /* We have to inform f/w to use user-supplied MAC
                         * address.
@@ -409,7 +409,7 @@ static int netdev_open(struct net_device *pnetdev)
                         * users specify.
                         */
                        memcpy(padapter->eeprompriv.mac_addr,
-                               pnetdev->dev_addr, ETH_ALEN);
+                              pnetdev->dev_addr, ETH_ALEN);
                }
                if (start_drv_threads(padapter) != _SUCCESS)
                        goto netdev_open_error;