From a540ae536ed6af5d4d500a3efa49c2921c31c063 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 19 Jul 2009 00:21:19 +0000 Subject: [PATCH] trivial: print a message on return. fix typo Rom -> ROM. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@1174 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- util/x86emu/x86.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/x86emu/x86.c b/util/x86emu/x86.c index 318af61c4c..3b7afd03ef 100644 --- a/util/x86emu/x86.c +++ b/util/x86emu/x86.c @@ -149,8 +149,9 @@ void run_bios(struct device *dev, unsigned long addr) printk(BIOS_SPEW, "Real mode stub @%p: %d bytes\n", REALMODE_BASE, (u32)&__realmode_code_size); - printk(BIOS_DEBUG, "Calling Option Rom...\n"); + printk(BIOS_DEBUG, "Calling Option ROM...\n"); run_optionrom((dev->bus->secondary << 8) | dev->path.pci.devfn); + printk(BIOS_DEBUG, "... Option ROM returned.\n"); } int __attribute__((regparm(0))) interrupt_handler(u32 intnumber,