Author: mkarcher Date: Thu Feb 4 11:58:50 2010 New Revision: 892 URL: http://flashrom.org/trac/coreboot/changeset/892
Log: Allow DMI supported board enables with subsystem ID zero.
This is needed for the Intel SE440BX-2 as well as the Asus P5A.
Signed-off-by: Michael Karcher flashrom@mkarcher.dialup.fu-berlin.de Acked-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Modified: trunk/board_enable.c
Modified: trunk/board_enable.c ============================================================================== --- trunk/board_enable.c Thu Feb 4 09:29:18 2010 (r891) +++ trunk/board_enable.c Thu Feb 4 11:58:50 2010 (r892) @@ -1305,7 +1305,8 @@ 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,