net: amd: correct some format issues
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>
This commit is contained in:
parent
ca3fc0aa08
commit
3f6ebcffaf
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue