From 5bade2b9a567806318a24b3fec5723d231051da5 Mon Sep 17 00:00:00 2001 From: n_hibma Date: Mon, 14 Sep 2009 13:16:16 +0000 Subject: John Baldwin suggested that 'stolen memory' only happens in the case of i810 and therefore is useful info there. Aperture size and stolen memory are now printed on one line. Submitted by: jhb --- sys/dev/agp/agp_i810.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'sys/dev/agp') diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c index c5bf68e..a175824 100644 --- a/sys/dev/agp/agp_i810.c +++ b/sys/dev/agp/agp_i810.c @@ -667,14 +667,12 @@ agp_i810_attach(device_t dev) gatt->ag_physical = pgtblctl & ~1; } - if (bootverbose) { - device_printf(dev, "aperture size is %dM", - sc->initial_aperture / 1024 / 1024); - if (sc->stolen > 0) - printf(", detected %dk stolen memory\n", sc->stolen * 4); - else - printf("\n"); - } + device_printf(dev, "aperture size is %dM", + sc->initial_aperture / 1024 / 1024); + if (sc->stolen > 0) + printf(", detected %dk stolen memory\n", sc->stolen * 4); + else + printf("\n"); if (0) agp_i810_dump_regs(dev); -- cgit v1.1