diff options
author | Jonathan McDowell <noodles@earth.li> | 2006-04-21 16:43:06 +0000 |
---|---|---|
committer | Jonathan McDowell <noodles@earth.li> | 2006-04-21 16:43:06 +0000 |
commit | 496450c4eb45e44d33d12e0a48d23c9a0182a2ee (patch) | |
tree | 263a6055d4235b464ab6315ffdde16b51c2b0f74 | |
parent | a910a3a02291b8bceeaadaae0c1745124fe0fea8 (diff) | |
download | coreboot-496450c4eb45e44d33d12e0a48d23c9a0182a2ee.tar.xz |
Lower debug progress messages in vt8623 init to debug level rather than error.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2270 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/northbridge/via/vt8623/raminit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/via/vt8623/raminit.c b/src/northbridge/via/vt8623/raminit.c index 750193231a..5508e3e659 100644 --- a/src/northbridge/via/vt8623/raminit.c +++ b/src/northbridge/via/vt8623/raminit.c @@ -72,7 +72,7 @@ static void ddr_ram_setup(const struct mem_controller *ctrl) uint16_t i,j; unsigned long bank_address; - print_err("vt8623 init starting\r\n"); + print_debug("vt8623 init starting\r\n"); north = pci_locate_device(PCI_ID(0x1106, 0x3123), 0); north = 0; @@ -608,10 +608,10 @@ static void ddr_ram_setup(const struct mem_controller *ctrl) pci_write_config8(north,0xac,0x2f); pci_write_config8(north,0xae,0x04); - print_err("vt8623 done\r\n"); + print_debug("vt8623 done\r\n"); dumpnorth(north); - print_err("AGP\r\n"); + print_debug("AGP\r\n"); north = pci_locate_device(PCI_ID(0x1106, 0xb091), 0); pci_write_config32(north,0x20,0xddf0dc00); pci_write_config32(north,0x24,0xdbf0d800); |