summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2008-01-02 03:40:39 +0000
committerBrad Smith <brad@cvs.openbsd.org>2008-01-02 03:40:39 +0000
commite7c5b8c5f34b316e0c5eb75df2446c384fdf2ea5 (patch)
treea58db881ab2a5f671b31c304f4a2ec6a1e860fa2 /sys
parente5c29079a4265a0988709ca228c5dbf8747b13cb (diff)
correct the comment in agp_map_aperture().
ok owa@ dlg@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/agp.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/pci/agp.c b/sys/dev/pci/agp.c
index 28a39a30ce6..4b2fc70976d 100644
--- a/sys/dev/pci/agp.c
+++ b/sys/dev/pci/agp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: agp.c,v 1.14 2007/12/07 17:35:22 oga Exp $ */
+/* $OpenBSD: agp.c,v 1.15 2008/01/02 03:40:38 brad Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
* All rights reserved.
@@ -353,10 +353,7 @@ agp_lookup(struct pci_attach_args *pa)
int
agp_map_aperture(struct pci_attach_args *pa, struct agp_softc *sc, u_int32_t bar, u_int32_t memtype)
{
- /*
- * Find and the aperture. Don't map it (yet), this would
- * eat KVA.
- */
+ /* Find the aperture. Don't map it (yet), this would eat KVA */
if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, bar,
memtype, &sc->sc_apaddr, &sc->sc_apsize,
&sc->sc_apflags) != 0)