diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-26 15:35:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-26 15:35:18 +0000 |
commit | 522370568a7e1ff9f9c84cf277a796ca18a945df (patch) | |
tree | 5e7987626740c4b1ab8a063af3f8ea89b3be934a /sys/dev/pci/agp.c | |
parent | 3dc2115b1effca39cdb1a9e361df7b7f444f7816 (diff) |
correct newlines surrounding the sub-bus configuration, and unify
pchb's further
ok reyk oga
Diffstat (limited to 'sys/dev/pci/agp.c')
-rw-r--r-- | sys/dev/pci/agp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/agp.c b/sys/dev/pci/agp.c index 9b0dc719337..dec6f753e09 100644 --- a/sys/dev/pci/agp.c +++ b/sys/dev/pci/agp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: agp.c,v 1.9 2007/11/26 10:35:42 reyk Exp $ */ +/* $OpenBSD: agp.c,v 1.10 2007/11/26 15:35:15 deraadt Exp $ */ /*- * Copyright (c) 2000 Doug Rabson * All rights reserved. @@ -177,14 +177,14 @@ agp_attach(struct device *parent, struct device *self, void *aux) pci_get_capability(sc->sc_pc, sc->sc_pcitag, PCI_CAP_AGP, &sc->sc_capoff, NULL); + printf(": "); ret = (*ap->ap_attach)(sc, pa); if (ret == 0) - printf(": aperture at 0x%lx, size 0x%lx", + printf("aperture at 0x%lx, size 0x%lx\n", (u_long)sc->sc_apaddr, (u_long)AGP_GET_APERTURE(sc)); else { sc->sc_chipc = NULL; - printf(": AGP GART"); } } } |