diff mbox series

net: sungem: fix indentation, remove a tab

Message ID 20190114154125.18455-1-colin.king@canonical.com
State Accepted
Delegated to: David Miller
Headers show
Series net: sungem: fix indentation, remove a tab | expand

Commit Message

Colin Ian King Jan. 14, 2019, 3:41 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

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>
---
 drivers/net/ethernet/sun/sungem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller Jan. 16, 2019, 10:05 p.m. UTC | #1
From: Colin King <colin.king@canonical.com>
Date: Mon, 14 Jan 2019 15:41:25 +0000

> From: Colin Ian King <colin.king@canonical.com>
> 
> 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>

Applied to net-next.
diff mbox series

Patch

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 &&