summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2015-10-21 14:11:07 +0000
committerchristos <christos@NetBSD.org>2015-10-21 14:11:07 +0000
commit82664eba1c1848fc08f61d3e2c1ab8fe666d72fa (patch)
tree904477e633377dd33619898a26a90fb9e78111aa /sys/dev
parentee49c4a3f0a8b85246c2974b1583a14a0128e05d (diff)
CID 1328433: Anding with 0 and comparing != 0 will not work very will.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/agp_i810.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c
index 4289bed080e..4373735f74f 100644
--- a/sys/dev/pci/agp_i810.c
+++ b/sys/dev/pci/agp_i810.c
@@ -1,4 +1,4 @@
-/* $NetBSD: agp_i810.c,v 1.119 2015/10/13 12:17:04 riastradh Exp $ */
+/* $NetBSD: agp_i810.c,v 1.120 2015/10/21 14:11:07 christos Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.119 2015/10/13 12:17:04 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.120 2015/10/21 14:11:07 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -445,7 +445,7 @@ agp_i810_attach(device_t parent, device_t self, void *aux)
*/
mmadr_type = pci_mapreg_type(isc->vga_pa.pa_pc, isc->vga_pa.pa_tag,
mmadr_bar);
- if ((mmadr_type & PCI_MAPREG_TYPE_MEM) != PCI_MAPREG_TYPE_MEM) {
+ if (PCI_MAPREG_TYPE(mmaddr_type) != PCI_MAPREG_TYPE_MEM) {
aprint_error_dev(self, "non-memory device MMIO registers\n");
error = ENXIO;
goto fail1;