1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

Biostar p4m80 board enable typo

Obvious typo due to inb/outb versus wbsio_ argument ordering confusion.

Corresponding to flashrom svn r546.

Signed-off-by: Luc Verhaegen <libv@skynet.be>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Luc Verhaegen 2009-05-25 11:35:25 +00:00
parent ab60a43104
commit 1fa386262c

View File

@ -609,7 +609,7 @@ static int board_biostar_p4m80_m4(const char *name)
wbsio_mask(0x2e, 0x24, 0x04, 0x04);
/* exit IT87xx conf mode */
wbsio_write(0x2, 0x2e, 0x2);
wbsio_write(0x2e, 0x02, 0x02);
return 0;
}