bootsource was used when src should have been instead. While at it,
rename bs to src for alignment with other functions.

Signed-off-by: Ahmad Fatoum <[email protected]>
Signed-off-by: Johannes Zink <[email protected]>
---
 common/bootsource.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/common/bootsource.c b/common/bootsource.c
index d74c5e5cb..70bac945d 100644
--- a/common/bootsource.c
+++ b/common/bootsource.c
@@ -33,9 +33,9 @@ static enum bootsource bootsource = BOOTSOURCE_UNKNOWN;
 static int bootsource_instance = BOOTSOURCE_INSTANCE_UNKNOWN;
 const char *bootsource_alias_name = NULL;
 
-const char *bootsource_get_alias_stem(enum bootsource bs)
+const char *bootsource_get_alias_stem(enum bootsource src)
 {
-       switch (bs) {
+       switch (src) {
                /*
                 * For I2C and SPI EEPROMs we set the stem to be 'i2c'
                 * and 'spi' correspondingly. The resulting alias will
@@ -55,7 +55,7 @@ const char *bootsource_get_alias_stem(enum bootsource bs)
        case BOOTSOURCE_MMC:    /* FALLTHROUGH */
        case BOOTSOURCE_SPI:    /* FALLTHROUGH */
        case BOOTSOURCE_CAN:
-               return bootsource_str[bootsource];
+               return bootsource_str[src];
        default:
                return NULL;
        }
@@ -127,7 +127,7 @@ void bootsource_set_raw_instance(int instance)
                pr_setenv("bootsource_instance", "%d", instance);
 }
 
-int bootsource_of_alias_xlate(enum bootsource bs, int instance)
+int bootsource_of_alias_xlate(enum bootsource src, int instance)
 {
        char alias[sizeof("barebox,bootsource-harddisk4294967295")];
        const char *bootsource_stem;
@@ -137,11 +137,11 @@ int bootsource_of_alias_xlate(enum bootsource bs, int 
instance)
        if (!IS_ENABLED(CONFIG_OFDEVICE))
                return BOOTSOURCE_INSTANCE_UNKNOWN;
 
-       if (bs == BOOTSOURCE_UNKNOWN ||
+       if (src == BOOTSOURCE_UNKNOWN ||
            instance == BOOTSOURCE_INSTANCE_UNKNOWN)
                return BOOTSOURCE_INSTANCE_UNKNOWN;
 
-       bootsource_stem = bootsource_get_alias_stem(bs);
+       bootsource_stem = bootsource_get_alias_stem(src);
        if (!bootsource_stem)
                return BOOTSOURCE_INSTANCE_UNKNOWN;
 
@@ -159,15 +159,15 @@ int bootsource_of_alias_xlate(enum bootsource bs, int 
instance)
        return alias_id;
 }
 
-int bootsource_set(enum bootsource bs, int instance)
+int bootsource_set(enum bootsource src, int instance)
 {
        int alias_id;
 
-       alias_id = bootsource_of_alias_xlate(bs, instance);
+       alias_id = bootsource_of_alias_xlate(src, instance);
        if (alias_id == BOOTSOURCE_INSTANCE_UNKNOWN)
                alias_id = instance;
 
-       bootsource_set_raw(bs, alias_id);
+       bootsource_set_raw(src, alias_id);
 
        return alias_id;
 }
-- 
2.30.2


Reply via email to