mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 06:23:18 +02:00
Unify programmer parameter extraction
Make programmer_param static by converting all users to extract_programmer_param. Programmer parameters can no longer be separated with a colon, they have to be separated with a comma. Corresponding to flashrom svn r1072. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
This commit is contained in:
2
pcidev.c
2
pcidev.c
@ -94,7 +94,7 @@ uint32_t pcidev_init(uint16_t vendor_id, uint32_t bar,
|
||||
|
||||
/* Filter by vendor and also bb:dd.f (if supplied by the user). */
|
||||
filter.vendor = vendor_id;
|
||||
pcidev_bdf = extract_param(&programmer_param, "pci", ",");
|
||||
pcidev_bdf = extract_programmer_param("pci");
|
||||
if (pcidev_bdf != NULL) {
|
||||
if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) {
|
||||
msg_perr("Error: %s\n", msg);
|
||||
|
Reference in New Issue
Block a user