summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-06-09 13:09:13 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-06-21 08:31:46 +0000
commit561e11d6f872f6b6ab5fe79df0cbbf8dcd836297 (patch)
tree175a8f599d847dbf41e1a1125168447b0ac71595 /src
parent77b3a91bba5c9a0f5dd3144b38ba5308971103ec (diff)
downloadcoreboot-561e11d6f872f6b6ab5fe79df0cbbf8dcd836297.tar.gz
coreboot-561e11d6f872f6b6ab5fe79df0cbbf8dcd836297.tar.bz2
coreboot-561e11d6f872f6b6ab5fe79df0cbbf8dcd836297.zip
drivers/intel/fsp1_0/fastboot_cache: Remove unneeded 'else'
'else' is not needed after a 'break' or 'return'. Change-Id: I109f5aaa87afde61a36fff884305b43c1de2c680 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33332 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Vlado Cibic Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/drivers/intel/fsp1_0/fastboot_cache.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/drivers/intel/fsp1_0/fastboot_cache.c b/src/drivers/intel/fsp1_0/fastboot_cache.c
index 088c292e8d97..34761a05be14 100644
--- a/src/drivers/intel/fsp1_0/fastboot_cache.c
+++ b/src/drivers/intel/fsp1_0/fastboot_cache.c
@@ -65,13 +65,12 @@ static u32 get_mrc_cache_region(struct mrc_data_container **mrc_region_ptr)
}
*mrc_region_ptr = NULL;
return 0;
- } else {
- *mrc_region_ptr = cbfs_boot_map_with_leak("mrc.cache",
- CBFS_TYPE_MRC_CACHE,
- &region_size);
-
- return region_size;
}
+ *mrc_region_ptr = cbfs_boot_map_with_leak("mrc.cache",
+ CBFS_TYPE_MRC_CACHE,
+ &region_size);
+
+ return region_size;
}
/*