Skip to content

Commit

Permalink
net: sungem: fix indentation, remove a tab
Browse files Browse the repository at this point in the history
The declaration of variable 'found' is one level too deep, fix this by
removing a tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Colin Ian King authored and David S. Miller committed Jan 16, 2019
1 parent eedfb22 commit bdbe8cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/sun/sungem.c
Original file line number Diff line number Diff line change
Expand Up @@ -2760,7 +2760,7 @@ static void get_gem_mac_nonobp(struct pci_dev *pdev, unsigned char *dev_addr)
void __iomem *p = pci_map_rom(pdev, &size);

if (p) {
int found;
int found;

found = readb(p) == 0x55 &&
readb(p + 1) == 0xaa &&
Expand Down

0 comments on commit bdbe8cc

Please sign in to comment.