1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-06-30 21:52:36 +02:00

Mark 3COM "3C905B: Cyclone 10/100/BNC" as fully tested

Also do some random cleanups while I'm at it.

Corresponding to flashrom svn r567.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2009-06-02 19:54:22 +00:00
parent bc2bbd2851
commit e9d04d40ce
5 changed files with 11 additions and 11 deletions

View File

@ -781,15 +781,15 @@ static int enable_flash_sb600(struct pci_dev *dev, const char *name)
static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
{
uint8_t tmp;
uint8_t tmp;
pci_write_byte(dev, 0x92, 0);
pci_write_byte(dev, 0x92, 0);
tmp = pci_read_byte(dev, 0x6d);
tmp |= 0x01;
pci_write_byte(dev, 0x6d, tmp);
tmp = pci_read_byte(dev, 0x6d);
tmp |= 0x01;
pci_write_byte(dev, 0x6d, tmp);
return 0;
return 0;
}
static int enable_flash_ck804(struct pci_dev *dev, const char *name)