realtek: fix syntax error introduced by previous commit
A superflus ')' character has slipped into commit91a52f22a1
. Remove it to fix build. Fixes:91a52f22a1
("treewide: backport support for nvmem on non platform devices") Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
774b386a92
commit
e3096c384c
@ -2089,7 +2089,7 @@ static int __init rtl838x_eth_probe(struct platform_device *pdev)
|
||||
* 2) from internal registers set by bootloader
|
||||
*/
|
||||
of_get_mac_address(pdev->dev.of_node, dev->dev_addr);
|
||||
if (is_valid_ether_addr(dev->dev_addr))) {
|
||||
if (is_valid_ether_addr(dev->dev_addr)) {
|
||||
rtl838x_set_mac_hw(dev, (u8 *)dev->dev_addr);
|
||||
} else {
|
||||
dev->dev_addr[0] = (sw_r32(priv->r->mac) >> 8) & 0xff;
|
||||
|
Loading…
Reference in New Issue
Block a user