summaryrefslogtreecommitdiffstats
path: root/board_enable.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-01-18 15:33:10 +0000
committerStefan Reinauer <stefan.reinauer@coreboot.org>2008-01-18 15:33:10 +0000
commite3f3e2edb4f45ff5f53df3a3b4012bc5e60f1bb8 (patch)
treef2e011db66093d0ccda872ed7a73f3ff2d1eccb0 /board_enable.c
parenta3f8a6416616588021f21b893e673cc67a71bc3f (diff)
downloadast2050-flashrom-e3f3e2edb4f45ff5f53df3a3b4012bc5e60f1bb8.zip
ast2050-flashrom-e3f3e2edb4f45ff5f53df3a3b4012bc5e60f1bb8.tar.gz
Rename LinuxBIOS to coreboot
Corresponding to flashrom svn r178 and coreboot v2 svn r3054. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de>
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/board_enable.c b/board_enable.c
index 79c6e87..27f431f 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -148,7 +148,7 @@ static int w83627thf_gpio4_4_raise_4e(const char *name)
/**
* Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
*
- * We don't need to do this when using LinuxBIOS, GPIO15 is never lowered there.
+ * We don't need to do this when using coreboot, GPIO15 is never lowered there.
*/
static int board_via_epia_m(const char *name)
{
@@ -368,7 +368,7 @@ struct board_pciid_enable {
uint16_t second_card_vendor;
uint16_t second_card_device;
- /* The vendor / part name from the LinuxBIOS table. */
+ /* The vendor / part name from the coreboot table. */
const char *lb_vendor;
const char *lb_part;
@@ -407,10 +407,10 @@ struct board_pciid_enable board_pciid_enables[] = {
};
/**
- * Match boards on LinuxBIOS table gathered vendor and part name.
+ * Match boards on coreboot table gathered vendor and part name.
* Require main PCI IDs to match too as extra safety.
*/
-static struct board_pciid_enable *board_match_linuxbios_name(const char *vendor, const char *part)
+static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, const char *part)
{
struct board_pciid_enable *board = board_pciid_enables;
@@ -478,7 +478,7 @@ int board_flash_enable(const char *vendor, const char *part)
int ret = 0;
if (vendor && part)
- board = board_match_linuxbios_name(vendor, part);
+ board = board_match_coreboot_name(vendor, part);
if (!board)
board = board_match_pci_card_ids();
OpenPOWER on IntegriCloud