/* The Marvell PHY has an errata which requires
         * that certain registers get written in order
-        * to restart autonegotiation */
+        * to restart autonegotiation
+        */
        err = phy_write(phydev, MII_BMCR, BMCR_RESET);
 
        if (err < 0)
        if (phydev->autoneg != AUTONEG_ENABLE) {
                int bmcr;
 
-               /*
-                * A write to speed/duplex bits (that is performed by
+               /* A write to speed/duplex bits (that is performed by
                 * genphy_config_aneg() call above) must be followed by
                 * a software reset. Otherwise, the write has no effect.
                 */
 }
 
 #ifdef CONFIG_OF_MDIO
-/*
- * Set and/or override some configuration registers based on the
+/* Set and/or override some configuration registers based on the
  * marvell,reg-init property stored in the of_node for the phydev.
  *
  * marvell,reg-init = <reg-page reg mask value>,...;
        int status;
 
        /* Use the generic register for copper link, or specific
-        * register for fiber case */
+        * register for fiber case
+        */
        if (fiber) {
                status = phy_read(phydev, MII_M1011_PHY_STATUS);
                if (status < 0)
        int fiber;
 
        /* Detect and update the link, but return if there
-        * was an error */
+        * was an error
+        */
        if (page == MII_M1111_FIBER)
                fiber = 1;
        else
                if (err < 0)
                        goto error;
 
-               /* If the fiber link is up, it is the selected and used link.
-                * In this case, we need to stay in the fiber page.
-                * Please to be careful about that, avoid to restore Copper page
-                * in other functions which could break the behaviour
-                * for some fiber phy like 88E1512.
-                * */
+               /* If the fiber link is up, it is the selected and
+                * used link. In this case, we need to stay in the
+                * fiber page. Please to be careful about that, avoid
+                * to restore Copper page in other functions which
+                * could break the behaviour for some fiber phy like
+                * 88E1512.
+                */
                if (phydev->link)
                        return 0;