fix stupid typo.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1297 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
2816e88349
commit
dcac0161d4
|
@ -188,7 +188,7 @@ do_vgabios(void)
|
|||
printk_debug("rom base, size: %x\n", rom);
|
||||
#endif
|
||||
buf = (unsigned char *) rom;
|
||||
if ((buf[0] == 0x55) && (buf[1] = 0xaa)) {
|
||||
if ((buf[0] == 0x55) && (buf[1] == 0xaa)) {
|
||||
memcpy((void *) 0xc0000, buf, size);
|
||||
|
||||
for(i = 0; i < 16; i++)
|
||||
|
|
Loading…
Reference in New Issue