summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-12-06 22:11:02 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2010-12-06 22:11:02 +0000
commita71c133efb7026da05ac2f7f41a6926bc5824a63 (patch)
treecaa8cefa19803b9912219905c5cc1f2499bb0544 /sys/arch/hppa64
parent2131988aa3472105a2067d04c42151159fe3515d (diff)
- partially revert previous NENTS removal for arches which got busted.
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r--sys/arch/hppa64/stand/boot/conf.c6
-rw-r--r--sys/arch/hppa64/stand/cdboot/cdboot.c6
-rw-r--r--sys/arch/hppa64/stand/libsa/cmd_hppa64.c6
-rw-r--r--sys/arch/hppa64/stand/libsa/dev_hppa64.c8
4 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/hppa64/stand/boot/conf.c b/sys/arch/hppa64/stand/boot/conf.c
index 29f196a4ff7..70cd951329f 100644
--- a/sys/arch/hppa64/stand/boot/conf.c
+++ b/sys/arch/hppa64/stand/boot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.3 2010/12/06 18:44:49 jasper Exp $ */
+/* $OpenBSD: conf.c,v 1.4 2010/12/06 22:11:01 jasper Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -34,14 +34,14 @@ struct fs_ops file_system[] = {
{ lif_open, lif_close, lif_read, lif_write, lif_seek,
lif_stat, lif_readdir },
};
-int nfsys = nitems(file_system);
+int nfsys = NENTS(file_system);
struct devsw devsw[] = {
{ "dk", iodcstrategy, dkopen, dkclose, noioctl },
{ "ct", iodcstrategy, ctopen, ctclose, noioctl },
{ "lf", iodcstrategy, lfopen, lfclose, noioctl }
};
-int ndevs = nitems(devsw);
+int ndevs = NENTS(devsw);
struct consdev constab[] = {
{ ite_probe, ite_init, ite_getc, ite_putc },
diff --git a/sys/arch/hppa64/stand/cdboot/cdboot.c b/sys/arch/hppa64/stand/cdboot/cdboot.c
index 82fcb5abae9..5eb7d8a6998 100644
--- a/sys/arch/hppa64/stand/cdboot/cdboot.c
+++ b/sys/arch/hppa64/stand/cdboot/cdboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cdboot.c,v 1.2 2010/12/06 18:44:49 jasper Exp $ */
+/* $OpenBSD: cdboot.c,v 1.3 2010/12/06 22:11:01 jasper Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -37,12 +37,12 @@ struct fs_ops file_system[] = {
{ cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek,
cd9660_stat, cd9660_readdir },
};
-int nfsys = nitems(file_system);
+int nfsys = NENTS(file_system);
struct devsw devsw[] = {
{ "dk", iodcstrategy, dkopen, dkclose, noioctl },
};
-int ndevs = nitems(devsw);
+int ndevs = NENTS(devsw);
struct consdev constab[] = {
{ ite_probe, ite_init, ite_getc, ite_putc },
diff --git a/sys/arch/hppa64/stand/libsa/cmd_hppa64.c b/sys/arch/hppa64/stand/libsa/cmd_hppa64.c
index d782f5945ff..7a476478de7 100644
--- a/sys/arch/hppa64/stand/libsa/cmd_hppa64.c
+++ b/sys/arch/hppa64/stand/libsa/cmd_hppa64.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd_hppa64.c,v 1.2 2010/12/06 18:44:49 jasper Exp $ */
+/* $OpenBSD: cmd_hppa64.c,v 1.3 2010/12/06 22:11:01 jasper Exp $ */
/*
* Copyright (c) 2002 Miodrag Vallat
@@ -337,13 +337,13 @@ set_serial(console, port, arg)
speed = 0;
if (arg == NULL || *arg == '\0') {
- for (i = 0; i < nitems(i_speeds); i++)
+ for (i = 0; i < NENTS(i_speeds); i++)
if (i_speeds[i] == 9600) {
speed = i;
break;
}
} else {
- for (i = 0; i < nitems(c_speeds); i++)
+ for (i = 0; i < NENTS(c_speeds); i++)
if (strcmp(arg, c_speeds[i]) == 0) {
speed = i;
break;
diff --git a/sys/arch/hppa64/stand/libsa/dev_hppa64.c b/sys/arch/hppa64/stand/libsa/dev_hppa64.c
index 74d6f51f5e7..8205affc88d 100644
--- a/sys/arch/hppa64/stand/libsa/dev_hppa64.c
+++ b/sys/arch/hppa64/stand/libsa/dev_hppa64.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dev_hppa64.c,v 1.3 2010/12/06 18:44:49 jasper Exp $ */
+/* $OpenBSD: dev_hppa64.c,v 1.4 2010/12/06 22:11:01 jasper Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -33,7 +33,7 @@ const char cdevs[][4] = {
"ite", "", "", "", "", "", "", "",
"", "", "", "", ""
};
-const int ncdevs = nitems(cdevs);
+const int ncdevs = NENTS(cdevs);
const struct pdc_devs {
char name[3];
@@ -69,11 +69,11 @@ devopen(f, fname, file)
printf("devopen: ");
#endif
- for (dp = pdc_devs; dp < &pdc_devs[nitems(pdc_devs)]; dp++)
+ for (dp = pdc_devs; dp < &pdc_devs[NENTS(pdc_devs)]; dp++)
if (!strncmp(fname, dp->name, sizeof(dp->name)-1))
break;
- if (dp >= &pdc_devs[nitems(pdc_devs)] || dp->dev_type < 0)
+ if (dp >= &pdc_devs[NENTS(pdc_devs)] || dp->dev_type < 0)
return ENODEV;
#ifdef DEBUGBUG
if (debug)