diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-10 12:31:59 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-10 12:31:59 +0000 |
commit | 3428a28ca445e54321e0a27dd54c38f958fecdfe (patch) | |
tree | 95695fd20b73d927014f736bde7c52f566a317e5 /sys/dev/pci/if_vr.c | |
parent | 412133833a9070c7d59b5b6d9bf355f498b1ae01 (diff) |
- use nitems() rather than handrolled version.
- add HWTAG capability to the quirks table. not yet used.
from chris@. no functional change.
Diffstat (limited to 'sys/dev/pci/if_vr.c')
-rw-r--r-- | sys/dev/pci/if_vr.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c index 19f15a9cfdc..bd074be7c4a 100644 --- a/sys/dev/pci/if_vr.c +++ b/sys/dev/pci/if_vr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vr.c,v 1.84 2009/05/10 12:09:46 sthen Exp $ */ +/* $OpenBSD: if_vr.c,v 1.85 2009/05/10 12:31:58 sthen Exp $ */ /* * Copyright (c) 1997, 1998 @@ -146,6 +146,7 @@ int vr_alloc_mbuf(struct vr_softc *, struct vr_chain_onefrag *, struct mbuf *); #define VR_Q_NEEDALIGN (1<<0) #define VR_Q_CSUM (1<<1) #define VR_Q_CAM (1<<2) +#define VR_Q_HWTAG (1<<3) struct vr_type { pci_vendor_id_t vr_vid; @@ -161,7 +162,7 @@ struct vr_type { { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6105, 0 }, { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6105M, - VR_Q_CSUM | VR_Q_CAM }, + VR_Q_CSUM | VR_Q_CAM | VR_Q_HWTAG }, { PCI_VENDOR_DELTA, PCI_PRODUCT_DELTA_RHINEII, VR_Q_NEEDALIGN }, { PCI_VENDOR_ADDTRON, PCI_PRODUCT_ADDTRON_RHINEII, @@ -457,7 +458,7 @@ vr_probe(struct device *parent, void *match, void *aux) { const struct vr_type *vr; struct pci_attach_args *pa = (struct pci_attach_args *)aux; - int i, nent = sizeof(vr_devices)/sizeof(vr_devices[0]); + int i, nent = nitems(vr_devices); for (i = 0, vr = vr_devices; i < nent; i++, vr++) if (PCI_VENDOR(pa->pa_id) == vr->vr_vid && @@ -471,7 +472,7 @@ int vr_quirks(struct pci_attach_args *pa) { const struct vr_type *vr; - int i, nent = sizeof(vr_devices)/sizeof(vr_devices[0]); + int i, nent = nitems(vr_devices); for (i = 0, vr = vr_devices; i < nent; i++, vr++) if (PCI_VENDOR(pa->pa_id) == vr->vr_vid && |