summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2017-04-06 17:16:41 +0000
committerEd Maste <emaste@FreeBSD.org>2017-04-06 17:16:41 +0000
commit4ab072262a3e6a60a8e37274f9b51a2e59aa21e3 (patch)
tree1f4cdd717bfd7957aae5cccb42fecc314078243f
parent7013b24d3285726adf5fa8d05808b84bfe7e3f17 (diff)
Notes
-rw-r--r--sys/dev/ex/if_ex.c2
-rw-r--r--sys/dev/ixgb/if_ixgb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c
index 58321689ed04..a37a484f2156 100644
--- a/sys/dev/ex/if_ex.c
+++ b/sys/dev/ex/if_ex.c
@@ -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;
diff --git a/sys/dev/ixgb/if_ixgb.c b/sys/dev/ixgb/if_ixgb.c
index 4db272c90f31..21f463eebc11 100644
--- a/sys/dev/ixgb/if_ixgb.c
+++ b/sys/dev/ixgb/if_ixgb.c
@@ -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;