diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-01-14 19:04:09 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-01-14 19:04:09 +0000 |
commit | 67b5f16578df3dafbe03bbc9f064e0b9439d769a (patch) | |
tree | 0be58f007aadcbfda18babd655ad8c0087eb272d /sys/arch/mvmeppc | |
parent | af6c3c3e1e2dadf084cbd6db0e1817a960fce7a9 (diff) |
- use nitems()
"doesn't hurt" deraadt@
Diffstat (limited to 'sys/arch/mvmeppc')
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvmeppc/mvmeppc/conf.c b/sys/arch/mvmeppc/mvmeppc/conf.c index b61d4a7e503..d5cf1369a41 100644 --- a/sys/arch/mvmeppc/mvmeppc/conf.c +++ b/sys/arch/mvmeppc/mvmeppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.29 2010/09/23 05:02:14 claudio Exp $ */ +/* $OpenBSD: conf.c,v 1.30 2011/01/14 19:04:08 jasper Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -78,7 +78,7 @@ struct bdevsw bdevsw[] = { bdev_notdef(), /* 18 unknown*/ bdev_disk_init(NRAID,raid), /* 19: RAIDframe disk driver */ }; -int nblkdev = sizeof bdevsw / sizeof bdevsw[0]; +int nblkdev = nitems(bdevsw); #include "bio.h" #include "pty.h" @@ -184,7 +184,7 @@ struct cdevsw cdevsw[] = { cdev_disk_init(1,diskmap), /* 57: disk mapper */ cdev_pppx_init(NPPPX,pppx), /* 58: pppx */ }; -int nchrdev = sizeof cdevsw / sizeof cdevsw[0]; +int nchrdev = nitems(cdevsw); int mem_no = 2; /* major number of /dev/mem */ @@ -278,7 +278,7 @@ int chrtoblktbl[] = { /* 53 */ NODEV, /* 54 */ 19, /* raid */ }; -int nchrtoblktbl = sizeof(chrtoblktbl) / sizeof(chrtoblktbl[0]); +int nchrtoblktbl = nitems(chrtoblktbl); #include <dev/cons.h> |