diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-01-14 10:41:25 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-01-16 17:04:59 -0500 |
commit | bdbe8cc1a30c7280bc5e6119fb5d37bfdd723c47 (patch) | |
tree | 8b01a9242da6842b16f46f28d688a800422b233c | |
parent | eedfb2234bf77f2c17b68e702ce5c51ed4c72fbd (diff) |
net: sungem: fix indentation, remove a tab
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>
-rw-r--r-- | drivers/net/ethernet/sun/sungem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sun/sungem.c b/drivers/net/ethernet/sun/sungem.c index b9221fc1674d..3e7631160384 100644 --- a/drivers/net/ethernet/sun/sungem.c +++ b/drivers/net/ethernet/sun/sungem.c | |||
@@ -2760,7 +2760,7 @@ static void get_gem_mac_nonobp(struct pci_dev *pdev, unsigned char *dev_addr) | |||
2760 | void __iomem *p = pci_map_rom(pdev, &size); | 2760 | void __iomem *p = pci_map_rom(pdev, &size); |
2761 | 2761 | ||
2762 | if (p) { | 2762 | if (p) { |
2763 | int found; | 2763 | int found; |
2764 | 2764 | ||
2765 | found = readb(p) == 0x55 && | 2765 | found = readb(p) == 0x55 && |
2766 | readb(p + 1) == 0xaa && | 2766 | readb(p + 1) == 0xaa && |