summaryrefslogtreecommitdiff
path: root/board/chromebook-x86
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-07-25 12:18:13 +0800
committerSimon Glass <sjg@chromium.org>2011-08-29 10:59:10 -0700
commitb987ec791ede0f8215373c9a88585a9e41566ff0 (patch)
treeec0e1b27b2d1e2511a4b6cbc9be8d6aea0fb2ee0 /board/chromebook-x86
parent2671be40bc552e404b6df24811c4a951b81d6a52 (diff)
CHROMIUM: rename is_cold_boot to is_processor_reset
The predicate function is_cold_boot() is in fact telling you whether we are booting from a processor reset. BUG=chrome-os-partner:5100 TEST=build cleanly Change-Id: I70f56448dd1b327426cf759854c35e20e0b4cfcf Reviewed-on: http://gerrit.chromium.org/gerrit/4644 Reviewed-by: Che-Liang Chiou <clchiou@chromium.org> Tested-by: Che-Liang Chiou <clchiou@chromium.org>
Diffstat (limited to 'board/chromebook-x86')
-rw-r--r--board/chromebook-x86/chromeos/power_management.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/chromebook-x86/chromeos/power_management.c b/board/chromebook-x86/chromeos/power_management.c
index a7482e384b8..1c92f35fbdf 100644
--- a/board/chromebook-x86/chromeos/power_management.c
+++ b/board/chromebook-x86/chromeos/power_management.c
@@ -13,9 +13,9 @@
#include <chromeos/power_management.h>
#include <common.h>
-int is_cold_boot(void)
+int is_processor_reset(void)
{
- printf("is_cold_boot used but not implemented.\n");
+ printf("is_processor_reset used but not implemented.\n");
return 1;
}