]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: sungem: fix indentation, remove a tab
authorColin Ian King <colin.king@canonical.com>
Mon, 14 Jan 2019 15:41:25 +0000 (15:41 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 16 Jan 2019 22:04:59 +0000 (14:04 -0800)
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>
drivers/net/ethernet/sun/sungem.c

index b9221fc1674dfa0ef17a43f8ff86d700a1ae514f..3e7631160384af613d5e57c213aaf1e13175a7c2 100644 (file)
@@ -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 &&