mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
pcidev: Move scandev_inclass logic from internal to pcidev
BUG=b:220950271 TEST=```sudo ./flashrom -p internal -r /tmp/bios <snip> Found Programmer flash chip "Opaque flash chip" (16384 kB, Programmer-specific) mapped at physical address 0x0000000000000000. Reading flash... done. ``` Change-Id: I1978e178fb73485f1c5c7e732853522847267cee Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/59277 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
This commit is contained in:

committed by
Edward O'Callaghan

parent
bc2e3b6b79
commit
6289508c5b
@ -782,7 +782,7 @@ static int via_vt823x_gpio_set(uint8_t gpio, int raise)
|
||||
uint16_t base;
|
||||
uint8_t val, bit, offset;
|
||||
|
||||
dev = pci_dev_find_vendorclass(0x1106, 0x0601);
|
||||
dev = pcidev_find_vendorclass(0x1106, 0x0601);
|
||||
switch (dev->device_id) {
|
||||
case 0x3177: /* VT8235 */
|
||||
case 0x3227: /* VT8237/VT8237R */
|
||||
@ -1073,7 +1073,7 @@ static int nvidia_mcp_gpio_set(int gpio, int raise)
|
||||
}
|
||||
|
||||
/* Check for the ISA bridge first. */
|
||||
dev = pci_dev_find_vendorclass(0x10DE, 0x0601);
|
||||
dev = pcidev_find_vendorclass(0x10DE, 0x0601);
|
||||
switch (dev->device_id) {
|
||||
case 0x0030: /* CK804 */
|
||||
case 0x0050: /* MCP04 */
|
||||
|
Reference in New Issue
Block a user