aboutsummaryrefslogtreecommitdiffstats
path: root/board_enable.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2022-02-26 11:36:17 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2022-03-04 00:01:15 +0000
commit6289508c5bb028fa4f6ed58dfef974302c5616f9 (patch)
tree4333c8cd206de1417346191060c129ea747a2d27 /board_enable.c
parentbc2e3b6b79dd1383cdf3d965df2fc5c0d6596b02 (diff)
downloadflashrom-6289508c5bb028fa4f6ed58dfef974302c5616f9.tar.gz
flashrom-6289508c5bb028fa4f6ed58dfef974302c5616f9.tar.bz2
flashrom-6289508c5bb028fa4f6ed58dfef974302c5616f9.zip
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>
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board_enable.c b/board_enable.c
index 194357a3..0ac522e5 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -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 */