summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-05-09 11:34:12 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-05-10 08:18:25 +0200
commit28a95cd4a0d0be2b84e4f2dc9dcd1d7411c33ecf (patch)
tree6cfbbe63dee3e48b587109b5a90de0e05ae2fff3
parentac91f2875f242b9d90ea7bed58fe9d831510d161 (diff)
downloadbarebox-28a95cd4a0d0be2b84e4f2dc9dcd1d7411c33ecf.tar.gz
barebox-28a95cd4a0d0be2b84e4f2dc9dcd1d7411c33ecf.tar.xz
bbu: bbu_register_std_file_update should take const char*
String arguments to bbu_register_std_file_update should be const. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--common/bbu.c2
-rw-r--r--include/bbu.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/common/bbu.c b/common/bbu.c
index 5cb09e4eb0..3271d403b7 100644
--- a/common/bbu.c
+++ b/common/bbu.c
@@ -361,7 +361,7 @@ err_close:
* Return: 0 if successful, negative error code otherwise
*/
int bbu_register_std_file_update(const char *name, unsigned long flags,
- char *devicefile, enum filetype imagetype)
+ const char *devicefile, enum filetype imagetype)
{
struct bbu_std *std;
struct bbu_handler *handler;
diff --git a/include/bbu.h b/include/bbu.h
index 0ed355b539..9da6785d2e 100644
--- a/include/bbu.h
+++ b/include/bbu.h
@@ -54,7 +54,7 @@ int bbu_handlers_iterate(int (*fn)(struct bbu_handler *, void *), void *);
int bbu_register_handler(struct bbu_handler *);
int bbu_register_std_file_update(const char *name, unsigned long flags,
- char *devicefile, enum filetype imagetype);
+ const char *devicefile, enum filetype imagetype);
#else
@@ -64,7 +64,7 @@ static inline int bbu_register_handler(struct bbu_handler *unused)
}
static inline int bbu_register_std_file_update(const char *name, unsigned long flags,
- char *devicefile, enum filetype imagetype)
+ const char *devicefile, enum filetype imagetype)
{
return -ENOSYS;
}