aboutsummaryrefslogtreecommitdiff
path: root/util/cbfstool/cbfstool.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/cbfstool.c')
-rw-r--r--util/cbfstool/cbfstool.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c
index 4ec8c904e5..decbd051f6 100644
--- a/util/cbfstool/cbfstool.c
+++ b/util/cbfstool/cbfstool.c
@@ -642,20 +642,17 @@ static int cbfstool_convert_fsp(struct buffer *buffer,
do_relocation = 0;
} else {
address = param.baseaddress;
- }
-
- /*
- * *offset should either be 0 or the value returned by
- * do_cbfs_locate. do_cbfs_locate should not ever return a value
- * that is TOP_ALIGNED_ADDRESS. Thus, if *offset contains a top
- * aligned address, set it to 0.
- *
- * The only requirement in this case is that the binary should
- * be relocated to the base address that is requested. There is
- * no requirement on where the file ends up in the cbfs.
- */
- if (IS_TOP_ALIGNED_ADDRESS(*offset))
+ /*
+ * *offset should either be 0 or the value returned by
+ * do_cbfs_locate. do_cbfs_locate is called only when param.baseaddress
+ * is not provided by user. Thus, set *offset to 0 if user provides
+ * a baseaddress i.e. params.baseaddress_assigned is set. The only
+ * requirement in this case is that the binary should be relocated to
+ * the base address that is requested. There is no requirement on where
+ * the file ends up in the cbfs.
+ */
*offset = 0;
+ }
}
/*