diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-22 05:05:34 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 14:13:08 -0400 |
commit | 9d2542d062da9e1e3934f504b4d769998a76c991 (patch) | |
tree | a5308fe2cc5f2b096121a2679ac7a1a1da9ad7c2 /common | |
parent | e003310a76211c2a9bb1939db4633830594c35ba (diff) | |
download | u-boot-9d2542d062da9e1e3934f504b4d769998a76c991.tar.gz |
bootstage: Adjust to use const * where possible
There are a few places that should use const *, such as
bootstage_unstash(). Update these to make it clearer when parameters are
changed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/bootstage.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/bootstage.c b/common/bootstage.c index 9ef931fd83..61479d7f07 100644 --- a/common/bootstage.c +++ b/common/bootstage.c @@ -205,7 +205,7 @@ uint32_t bootstage_accum(enum bootstage_id id) * @return pointer to name, either from the record or pointing to buf. */ static const char *get_record_name(char *buf, int len, - struct bootstage_record *rec) + const struct bootstage_record *rec) { if (rec->name) return rec->name; @@ -361,9 +361,9 @@ static void append_data(char **ptrp, char *end, const void *data, int size) int bootstage_stash(void *base, int size) { - struct bootstage_data *data = gd->bootstage; + const struct bootstage_data *data = gd->bootstage; struct bootstage_hdr *hdr = (struct bootstage_hdr *)base; - struct bootstage_record *rec; + const struct bootstage_record *rec; char buf[20]; char *ptr = base, *end = ptr + size; uint32_t count; @@ -414,12 +414,12 @@ int bootstage_stash(void *base, int size) return 0; } -int bootstage_unstash(void *base, int size) +int bootstage_unstash(const void *base, int size) { + const struct bootstage_hdr *hdr = (struct bootstage_hdr *)base; struct bootstage_data *data = gd->bootstage; - struct bootstage_hdr *hdr = (struct bootstage_hdr *)base; + const char *ptr = base, *end = ptr + size; struct bootstage_record *rec; - char *ptr = base, *end = ptr + size; uint rec_size; int i; |