Skip to content

Commit aae4587

Browse files
committed
ethernet: sis900: fix indentation
A space has snuck in. Reported-by: kernel test robot <[email protected]> Fixes: 74fad21 ("ethernet: sis900: use eth_hw_addr_set()") Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 27df68d commit aae4587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/sis/sis900.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ static int sis96x_get_mac_addr(struct pci_dev *pci_dev,
392392
/* get MAC address from EEPROM */
393393
for (i = 0; i < 3; i++)
394394
addr[i] = read_eeprom(ioaddr, i + EEPROMMACAddr);
395-
eth_hw_addr_set(net_dev, (u8 *)addr);
395+
eth_hw_addr_set(net_dev, (u8 *)addr);
396396

397397
rc = 1;
398398
break;

0 commit comments

Comments
 (0)