summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-12-06 18:44:50 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-12-06 18:44:50 +0000
commitc35b9bdae7316474e01b5a2ba9dcf3631b975901 (patch)
treee2584f7866a69b7d5115c88c8916474d2dc7c70b /sys/arch/hp300
parentadc400522ede0d3382b10f47167d1652125bd6e6 (diff)
- drop NENTS(), which was yet another copy of nitems().
no binary change ok deraadt@
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r--sys/arch/hp300/stand/common/if_le.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/stand/common/if_le.c b/sys/arch/hp300/stand/common/if_le.c
index 92c6499748f..402917bbc98 100644
--- a/sys/arch/hp300/stand/common/if_le.c
+++ b/sys/arch/hp300/stand/common/if_le.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le.c,v 1.6 2010/08/07 03:50:01 krw Exp $ */;
+/* $OpenBSD: if_le.c,v 1.7 2010/12/06 18:44:49 jasper Exp $ */;
/* $NetBSD: if_le.c,v 1.9 1997/01/30 10:32:54 thorpej Exp $ */
/*
@@ -80,10 +80,10 @@ extern struct netif_stats le_stats[];
struct netif_dif le_ifs[] = {
/* dif_unit dif_nsel dif_stats dif_private */
-{ 0, NENTS(le0conf), &le_stats[0], le0conf, },
+{ 0, nitems(le0conf),&le_stats[0], le0conf, },
};
-struct netif_stats le_stats[NENTS(le_ifs)];
+struct netif_stats le_stats[nitems(le_ifs)];
struct netif_driver le_driver = {
"le", /* netif_bname */
@@ -94,7 +94,7 @@ struct netif_driver le_driver = {
le_put, /* netif_put */
le_end, /* netif_end */
le_ifs, /* netif_ifs */
- NENTS(le_ifs) /* netif_nifs */
+ nitems(le_ifs) /* netif_nifs */
};
struct le_softc {