Lubomir Rintel has uploaded this change for review. ( https://review.coreboot.org/22270
Change subject: vx900/chrome9hd: fix a trivial typo ......................................................................
vx900/chrome9hd: fix a trivial typo
Change-Id: Ibfe6a6dc63454deacfd12de6dad2d6a792474f55 Signed-off-by: Lubomir Rintel lkundrak@v3.sk --- M src/northbridge/via/vx900/chrome9hd.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/22270/1
diff --git a/src/northbridge/via/vx900/chrome9hd.c b/src/northbridge/via/vx900/chrome9hd.c index 333b28d..147b308 100644 --- a/src/northbridge/via/vx900/chrome9hd.c +++ b/src/northbridge/via/vx900/chrome9hd.c @@ -89,7 +89,7 @@ tom_mb = (pci_read_config16(mcu, 0x88) & 0x07ff) << (24 - 20); max_size_mb = tom_mb >> 2; if (size_mb > max_size_mb) { - printk(BIOS_ALERT, "The framebuffer size of of %dMB is larger" + printk(BIOS_ALERT, "The framebuffer size of %dMB is larger" " than 1/4 of available memory.\n" " Limiting framebuffer to %dMB\n", size_mb, max_size_mb); size_mb = max_size_mb;