From 39705e3af58d0fd591cb74356a3ec58e6edf0076 Mon Sep 17 00:00:00 2001 From: riastradh Date: Sun, 24 Aug 2014 22:56:18 +0000 Subject: [PATCH] Use the right BAR for MMIO register sizing on i810. --- sys/dev/pci/agp_i810.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index 225b9b2c43df..32b13befc396 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.113 2014/08/22 15:26:28 riastradh Exp $ */ +/* $NetBSD: agp_i810.c,v 1.114 2014/08/24 22:56:18 riastradh Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.113 2014/08/22 15:26:28 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.114 2014/08/24 22:56:18 riastradh Exp $"); #include #include @@ -425,7 +425,7 @@ agp_i810_attach(device_t parent, device_t self, void *aux) apbase = AGP_I810_GMADR; mmadr_bar = AGP_I810_MMADR; if (pci_mapreg_info(isc->vga_pa.pa_pc, isc->vga_pa.pa_tag, - AGP_I965_MMADR, mmadr_type, NULL, &isc->size, NULL)) + AGP_I810_MMADR, mmadr_type, NULL, &isc->size, NULL)) isc->size = 512*1024; /* XXX */ gtt_bar = 0; gtt_off = AGP_I810_GTT;