diff options
| -rw-r--r-- | chipset_enable.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/chipset_enable.c b/chipset_enable.c index c6015f0c..97001a7e 100644 --- a/chipset_enable.c +++ b/chipset_enable.c @@ -801,6 +801,12 @@ static int enable_flash_ck804(struct pci_dev *dev, const char *name)  {  	uint8_t old, new; +	pci_write_byte(dev, 0x92, 0x00); +	if (pci_read_byte(dev, 0x92) != 0x00) { +		msg_pinfo("Setting register 0x%x to 0x%x on %s failed " +			  "(WARNING ONLY).\n", 0x92, 0x00, name); +	} +  	old = pci_read_byte(dev, 0x88);  	new = old | 0xc0;  	if (new != old) {  | 
