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

Commit ca92aea9 authored by Zhu Yanjun's avatar Zhu Yanjun Committed by David S. Miller
Browse files

forcedeth: Remove return from a void function



In a void function, it is not necessary to append a return statement in it.

Signed-off-by: default avatarZhu Yanjun <yanjun.zhu@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bc1750f3
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -3272,8 +3272,6 @@ static void nv_force_linkspeed(struct net_device *dev, int speed, int duplex)
	pci_push(base);
	pci_push(base);
	writel(np->linkspeed, base + NvRegLinkSpeed);
	writel(np->linkspeed, base + NvRegLinkSpeed);
	pci_push(base);
	pci_push(base);

	return;
}
}


/**
/**