mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
fix some typo
This commit is contained in:
parent
979fa7ec1f
commit
9c29cb1a3d
1 changed files with 2 additions and 2 deletions
|
@ -103,8 +103,8 @@ south_fixup(void)
|
|||
pcidev = pci_find_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503, (void *)NULL);
|
||||
if (pcidev != NULL) {
|
||||
u8 reg;
|
||||
pci_read_config_word(pcidev, 0x77, &temp);
|
||||
pci_write_config_byte(pci_dev, 0x77, temp & 0xEF);
|
||||
pci_read_config_byte(pcidev, 0x77, ®);
|
||||
pci_write_config_byte(pcidev, 0x77, reg & 0xEF);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue