summaryrefslogtreecommitdiff
path: root/include/bootsource.h
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-07-20 07:50:40 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-08-09 09:38:36 +0200
commit2fc6302090cd77c368cf784adf91dc2beb71764c (patch)
tree3f17cfe618da72406f1935a2b97aa6f73baa1bc7 /include/bootsource.h
parentef65ce9ba18d53f3aa046fef01ed63672bccf6b8 (diff)
downloadbarebox-2fc6302090cd77c368cf784adf91dc2beb71764c.tar.gz
bootsource: rename existing bootsource_set to bootsource_set_raw
Patterns like [ "$bootsource" = mmc ] && boot mmc$bootsource_instance expect that ${bootsource_instance} and MMC aliases align, which may not always be the case. In preparation for adding a new bootsource_set function that consults an optional mapping table from bootrom bootsource_instance to board-specific device numbering, rename all existing instances to bootsource_set_raw. While at it, clean up the legacy split into bootsource_set and bootsource_set_instance and have the new bootsource_set_raw accept both arguments at once. No functional change intended. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20220720055042.3510276-2-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/bootsource.h')
-rw-r--r--include/bootsource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bootsource.h b/include/bootsource.h
index 646b0e91c1..390d6f5d2b 100644
--- a/include/bootsource.h
+++ b/include/bootsource.h
@@ -26,8 +26,8 @@ enum bootsource {
enum bootsource bootsource_get(void);
int bootsource_get_instance(void);
-void bootsource_set(enum bootsource src);
-void bootsource_set_instance(int instance);
+void bootsource_set_raw(enum bootsource src, int instance);
+void bootsource_set_raw_instance(int instance);
void bootsource_set_alias_name(const char *name);
char *bootsource_get_alias_name(void);