Author: hailfinger Date: 2007-10-18 00:30:07 +0200 (Thu, 18 Oct 2007) New Revision: 2868
Modified: trunk/util/flashrom/chipset_enable.c Log: 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 .
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/util/flashrom/chipset_enable.c =================================================================== --- trunk/util/flashrom/chipset_enable.c 2007-10-17 01:57:14 UTC (rev 2867) +++ trunk/util/flashrom/chipset_enable.c 2007-10-17 22:30:07 UTC (rev 2868) @@ -381,7 +381,7 @@
/* 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 @@ 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);