diff mbox

[U-Boot,07/15] bootstage: Show records with a zero time

Message ID 20170522110536.6231-8-sjg@chromium.org
State Accepted
Commit c91001f608597a727261449b3c6fd3afe7d6551c
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass May 22, 2017, 11:05 a.m. UTC
We can now use the record count to determine whether a record is valid or
not. Drop the test for a zero time.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 common/bootstage.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

Comments

Tom Rini June 6, 2017, 12:21 a.m. UTC | #1
On Mon, May 22, 2017 at 05:05:28AM -0600, Simon Glass wrote:

> We can now use the record count to determine whether a record is valid or
> not. Drop the test for a zero time.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/common/bootstage.c b/common/bootstage.c
index 8cd2fb5e1b..1afdee3018 100644
--- a/common/bootstage.c
+++ b/common/bootstage.c
@@ -390,18 +390,15 @@  int bootstage_stash(void *base, int size)
 
 	/* Write the records, silently stopping when we run out of space */
 	for (rec = data->record, i = 0; i < data->rec_count; i++, rec++) {
-		if (rec->time_us != 0)
-			append_data(&ptr, end, rec, sizeof(*rec));
+		append_data(&ptr, end, rec, sizeof(*rec));
 	}
 
 	/* Write the name strings */
 	for (rec = data->record, i = 0; i < data->rec_count; i++, rec++) {
-		if (rec->time_us != 0) {
-			const char *name;
+		const char *name;
 
-			name = get_record_name(buf, sizeof(buf), rec);
-			append_data(&ptr, end, name, strlen(name) + 1);
-		}
+		name = get_record_name(buf, sizeof(buf), rec);
+		append_data(&ptr, end, name, strlen(name) + 1);
 	}
 
 	/* Check for buffer overflow */