remove archaic register keyword from ixgb and ex

Reviewed by:	sbruno
This commit is contained in:
Ed Maste 2017-04-06 17:16:41 +00:00
parent 7013b24d32
commit 4ab072262a
2 changed files with 2 additions and 2 deletions

View File

@ -812,7 +812,7 @@ rx_another: ;
static int
ex_ioctl(register struct ifnet *ifp, u_long cmd, caddr_t data)
ex_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{
struct ex_softc * sc = ifp->if_softc;
struct ifreq * ifr = (struct ifreq *)data;

View File

@ -1777,7 +1777,7 @@ static int
ixgb_get_buf(int i, struct adapter * adapter,
struct mbuf * nmp)
{
register struct mbuf *mp = nmp;
struct mbuf *mp = nmp;
struct ixgb_buffer *rx_buffer;
struct ifnet *ifp;
bus_addr_t paddr;