css.c: add __func__ to "completing manifest" log

This is useful to show which one of the 3 duplicated functions runs.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2021-10-04 18:27:30 +00:00 committed by Liam Girdwood
parent c038d62804
commit 0c66aa9122
1 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ void ri_css_v2_5_hdr_create(struct image *image)
time_t seconds; time_t seconds;
int val; int val;
fprintf(stdout, " cse: completing CSS manifest\n"); fprintf(stdout, " cse: %s completing CSS manifest\n", __func__);
/* get local time and date */ /* get local time and date */
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
@ -76,7 +76,7 @@ void ri_css_v1_8_hdr_create(struct image *image)
time_t seconds; time_t seconds;
int val; int val;
fprintf(stdout, " cse: completing CSS manifest\n"); fprintf(stdout, " cse: %s completing CSS manifest\n", __func__);
/* get local time and date */ /* get local time and date */
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
@ -133,7 +133,7 @@ void ri_css_v1_5_hdr_create(struct image *image)
time_t seconds; time_t seconds;
int val; int val;
fprintf(stdout, " cse: completing CSS manifest\n"); fprintf(stdout, " cse: %s completing CSS manifest\n", __func__);
/* get local time and date */ /* get local time and date */
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);