From d9fbe2f1ce7aa79e044833202257f9a414a49ec8 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sun, 27 Feb 2011 15:54:03 -0800 Subject: [PATCH] Dont error spew if no misc partition is available. Change-Id: Ic5d9c8dc936e8f9a4c61474cebeabb2eecc4446e --- bootloader.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bootloader.c b/bootloader.c index f3dc268..d455923 100644 --- a/bootloader.c +++ b/bootloader.c @@ -40,7 +40,6 @@ int get_bootloader_message(struct bootloader_message *out) { LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); return -1; } - LOGE("no misc partition\n"); return -1; } @@ -56,7 +55,6 @@ int set_bootloader_message(const struct bootloader_message *in) { LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); return -1; } - LOGE("no misc partition\n"); return -1; }