Commit dca0ab18 authored by Carl-Daniel Hailfinger's avatar Carl-Daniel Hailfinger
Browse files

Fix wrong values/typos in chipset_enable.c

This has been confirmed by Ed Swierk in
http://www.mail-archive.com/linuxbios@linuxbios.org/msg09788.html

 .

Corresponding to flashrom svn r150 and coreboot v2 svn r2868.
Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: default avatarStefan Reinauer <stepan@coresystems.de>
parent 2c5d4c69
......@@ -381,7 +381,7 @@ static int enable_flash_mcp55(struct pci_dev *dev, char *name)
/* dump_pci_device(dev); */
/* Set the 4MB enable bit bit */
/* Set the 0-16 MB enable bits */
byte = pci_read_byte(dev, 0x88);
byte |= 0xff; /* 256K */
pci_write_byte(dev, 0x88, byte);
......@@ -389,7 +389,7 @@ static int enable_flash_mcp55(struct pci_dev *dev, char *name)
byte |= 0xff; /* 1M */
pci_write_byte(dev, 0x8c, byte);
word = pci_read_word(dev, 0x90);
word |= 0x7fff; /* 15M */
word |= 0x7fff; /* 16M */
pci_write_word(dev, 0x90, word);
old = pci_read_byte(dev, 0x6d);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment