aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sun
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-01-14 15:41:25 +0000
committerDavid S. Miller <davem@davemloft.net>2019-01-16 14:04:59 -0800
commitbdbe8cc1a30c7280bc5e6119fb5d37bfdd723c47 (patch)
tree8b01a9242da6842b16f46f28d688a800422b233c /drivers/net/ethernet/sun
parentdrivers: net: atp: fix various indentation issues (diff)
downloadlinux-dev-bdbe8cc1a30c7280bc5e6119fb5d37bfdd723c47.tar.xz
linux-dev-bdbe8cc1a30c7280bc5e6119fb5d37bfdd723c47.zip
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>
Diffstat (limited to 'drivers/net/ethernet/sun')
-rw-r--r--drivers/net/ethernet/sun/sungem.c2
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)
void __iomem *p = pci_map_rom(pdev, &size);
if (p) {
- int found;
+ int found;
found = readb(p) == 0x55 &&
readb(p + 1) == 0xaa &&