net: amd: correct some format issues
authorYixing Liu <liuyixing1@huawei.com>
Wed, 31 Mar 2021 08:18:31 +0000 (16:18 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 31 Mar 2021 21:34:09 +0000 (14:34 -0700)
There should be a blank line after declarations.

Signed-off-by: Yixing Liu <liuyixing1@huawei.com>
Signed-off-by: Weihang Li <liweihang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/hplance.c

index e10aceb..6784f87 100644 (file)
@@ -170,6 +170,7 @@ static void hplance_init(struct net_device *dev, struct dio_dev *d)
 static void hplance_writerap(void *priv, unsigned short value)
 {
        struct lance_private *lp = (struct lance_private *)priv;
+
        do {
                out_be16(lp->base + HPLANCE_REGOFF + LANCE_RAP, value);
        } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
@@ -178,6 +179,7 @@ static void hplance_writerap(void *priv, unsigned short value)
 static void hplance_writerdp(void *priv, unsigned short value)
 {
        struct lance_private *lp = (struct lance_private *)priv;
+
        do {
                out_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP, value);
        } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
@@ -187,6 +189,7 @@ static unsigned short hplance_readrdp(void *priv)
 {
        struct lance_private *lp = (struct lance_private *)priv;
        __u16 value;
+
        do {
                value = in_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP);
        } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);