mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: rtl8712: Match alignment with open parenthesis.
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>
This commit is contained in:
parent
5043bd3c33
commit
9de60ba959
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue