From 2eab70da707db42270c72ceaab1bd08a3453118c Mon Sep 17 00:00:00 2001 From: Michael Karcher Date: Thu, 4 Feb 2010 10:58:50 +0000 Subject: Allow DMI supported board enables with subsystem ID zero This is needed for the Intel SE440BX-2 as well as the Asus P5A. Corresponding to flashrom svn r892. Signed-off-by: Michael Karcher Acked-by: Carl-Daniel Hailfinger --- board_enable.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'board_enable.c') diff --git a/board_enable.c b/board_enable.c index ff56d33..1fe41f7 100644 --- a/board_enable.c +++ b/board_enable.c @@ -1305,7 +1305,8 @@ static struct board_pciid_enable *board_match_pci_card_ids(void) struct board_pciid_enable *board = board_pciid_enables; for (; board->vendor_name; board++) { - if (!board->first_card_vendor || !board->first_card_device) + if ((!board->first_card_vendor || !board->first_card_device) && + !board->dmi_pattern) continue; if (!pci_card_find(board->first_vendor, board->first_device, -- cgit v1.1