Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68cfe9a2 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

net: sis900: fix indentation issues, remove some spaces



There are several statements that contain extra spacing in
the indentation; clean this up by removing spaces. Also
add { } braces on if statement to keep to kernel coding
style.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3d4c3cec
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -731,9 +731,9 @@ static u16 sis900_default_phy(struct net_device * net_dev)

		/* Link ON & Not select default PHY & not ghost PHY */
		if ((status & MII_STAT_LINK) && !default_phy &&
					(phy->phy_types != UNKNOWN))
		    (phy->phy_types != UNKNOWN)) {
			default_phy = phy;
		 else {
		} else {
			status = mdio_read(net_dev, phy->phy_addr, MII_CONTROL);
			mdio_write(net_dev, phy->phy_addr, MII_CONTROL,
				status | MII_CNTL_AUTO | MII_CNTL_ISOLATE);