aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gabeblack@chromium.org>2013-04-15 20:36:01 -0700
committerGabe Black <gabeblack@chromium.org>2013-04-16 11:11:53 +0200
commit8a2bc62d4ce86689353021843b2377c8bb8fab56 (patch)
treed05b48f4d1a4d1806e2751288e6cae5e4cdbebce /src
parent5cda30845c370d079a1ba2ff27628d76342da08d (diff)
snow: Return 0 from get_recovery_mode_from_vbnv.
This function isn't yet used for much, or perhaps anything, but where it appears in the code it's ored with other values. Since we're not actually retrieving anything, it might be best to return 0 so that the other values that are being ored in can be expressed and this function can stay dormant until it actually has something to do. Change-Id: I6edc222a5c2d00ece2ecfad5191a615331eeaf16 Signed-off-by: Gabe Black <gabeblack@chromium.org> Reviewed-on: http://review.coreboot.org/3098 Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/snow/chromeos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/snow/chromeos.c b/src/mainboard/google/snow/chromeos.c
index 0c47458902..6e46d134a5 100644
--- a/src/mainboard/google/snow/chromeos.c
+++ b/src/mainboard/google/snow/chromeos.c
@@ -116,5 +116,5 @@ int get_recovery_mode_switch(void)
int get_recovery_mode_from_vbnv(void)
{
- return 1;
+ return 0;
}