mii: remove leading spaces before tabs
authorHui Tang <tanghui20@huawei.com>
Thu, 20 May 2021 03:47:54 +0000 (11:47 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 20 May 2021 22:10:57 +0000 (15:10 -0700)
There are a few leading spaces before tabs and remove it by running
the following commard:

    $ find . -name '*.[ch]' | xargs sed -r -i 's/^[ ]+\t/\t/'

Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/mii.c

index e71ebb93326604e6643e44efe574ee7f9a109a41..779c3a96dba7e4a81ca0f4bedf56c979d58228a4 100644 (file)
@@ -81,7 +81,7 @@ int mii_ethtool_gset(struct mii_if_info *mii, struct ethtool_cmd *ecmd)
        bmcr = mii->mdio_read(dev, mii->phy_id, MII_BMCR);
        bmsr = mii->mdio_read(dev, mii->phy_id, MII_BMSR);
        if (mii->supports_gmii) {
-               ctrl1000 = mii->mdio_read(dev, mii->phy_id, MII_CTRL1000);
+               ctrl1000 = mii->mdio_read(dev, mii->phy_id, MII_CTRL1000);
                stat1000 = mii->mdio_read(dev, mii->phy_id, MII_STAT1000);
        }