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/macppc | |
parent | af6c3c3e1e2dadf084cbd6db0e1817a960fce7a9 (diff) |
- use nitems()
"doesn't hurt" deraadt@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index 39afc1770fd..1cd05415ceb 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.43 2010/09/23 05:02:14 claudio Exp $ */ +/* $OpenBSD: conf.c,v 1.44 2011/01/14 19:04:08 jasper Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -76,7 +76,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 "pty.h" #include "zstty.h" @@ -244,7 +244,7 @@ struct cdevsw cdevsw[] = { cdev_disk_init(1,diskmap), /* 84: disk mapper */ cdev_pppx_init(NPPPX,pppx), /* 85: pppx */ }; -int nchrdev = sizeof cdevsw / sizeof cdevsw[0]; +int nchrdev = nitems(cdevsw); int mem_no = 2; /* major number of /dev/mem */ @@ -336,7 +336,7 @@ int chrtoblktbl[] = { /* 53 */ NODEV, /* 54 */ 19, /* raid */ }; -int nchrtoblktbl = sizeof(chrtoblktbl) / sizeof(chrtoblktbl[0]); +int nchrtoblktbl = nitems(chrtoblktbl); #include <dev/cons.h> #include "vgafb_pci.h" |