From: Colin Ian King Date: Mon, 14 Jan 2019 15:41:25 +0000 (+0000) Subject: net: sungem: fix indentation, remove a tab X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=bdbe8cc1a30c7280bc5e6119fb5d37bfdd723c47;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: David S. Miller --- 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 &&