From 8a2bc62d4ce86689353021843b2377c8bb8fab56 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 15 Apr 2013 20:36:01 -0700 Subject: 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 Reviewed-on: http://review.coreboot.org/3098 Reviewed-by: David Hendricks Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/mainboard/google/snow/chromeos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } -- cgit v1.2.3