summaryrefslogtreecommitdiffstats
path: root/flashrom.c
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2011-03-08 00:09:11 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2011-03-08 00:09:11 +0000
commitd95355880a66fcbdb056031425288d29a9e6691f (patch)
treeaf6f2f08a9143e40a5b7862426ca644d8985e65a /flashrom.c
parent7913fb425fd94056627665c0c5704729ca64e0f0 (diff)
downloadast2050-flashrom-d95355880a66fcbdb056031425288d29a9e6691f.zip
ast2050-flashrom-d95355880a66fcbdb056031425288d29a9e6691f.tar.gz
Fix compilation if CONFIG_INTERNAL=no
Fix compilation if everything except CONFIG_SATAMV is no. Do not compile in PCI support for wiki printing if no PCI devices are supported. Corresponding to flashrom svn r1278. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
Diffstat (limited to 'flashrom.c')
-rw-r--r--flashrom.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/flashrom.c b/flashrom.c
index cfb8e5f..34248ed 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -1186,11 +1186,12 @@ notfound:
if (!flash || !flash->name)
return NULL;
- if (programmer_table[programmer].map_flash_region == physmap) {
+#if CONFIG_INTERNAL == 1
+ if (programmer_table[programmer].map_flash_region == physmap)
snprintf(location, sizeof(location), "at physical address 0x%lx", base);
- } else {
+ else
+#endif
snprintf(location, sizeof(location), "on %s", programmer_table[programmer].name);
- }
msg_cinfo("%s chip \"%s %s\" (%d KB, %s) %s.\n",
force ? "Assuming" : "Found",
OpenPOWER on IntegriCloud