aboutsummaryrefslogtreecommitdiff
path: root/lib/smbios.c
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2024-01-11 16:39:35 +0200
committerTom Rini <trini@konsulko.com>2024-01-18 20:24:13 -0500
commit5e2b472bd029af4a1ca85b04bd4a0c9c4b1a17b8 (patch)
tree33eb92b4bd8aa21aaea25d3929121055367142a1 /lib/smbios.c
parentcf536daeedf559d4192b1a9c85e0745a904b9204 (diff)
downloadu-boot-5e2b472bd029af4a1ca85b04bd4a0c9c4b1a17b8.zip
u-boot-5e2b472bd029af4a1ca85b04bd4a0c9c4b1a17b8.tar.gz
u-boot-5e2b472bd029af4a1ca85b04bd4a0c9c4b1a17b8.tar.bz2
smbios: shorten sysinfo_str declarations and use
sysinfo_str is a bit too long and makes indentation weird. Shorten it to si_str. Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'lib/smbios.c')
-rw-r--r--lib/smbios.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/smbios.c b/lib/smbios.c
index 25595f5..b24092d 100644
--- a/lib/smbios.c
+++ b/lib/smbios.c
@@ -48,20 +48,20 @@ DECLARE_GLOBAL_DATA_PTR;
/**
* struct map_sysinfo - Mapping of sysinfo strings to DT
*
- * @sysinfo_str: sysinfo string
+ * @si_str: sysinfo string
* @dt_str: DT string
* @max: Max index of the tokenized string to pick. Counting starts from 0
*
*/
struct map_sysinfo {
- const char *sysinfo_str;
+ const char *si_str;
const char *dt_str;
int max;
};
static const struct map_sysinfo sysinfo_to_dt[] = {
- { .sysinfo_str = "product", .dt_str = "model", 2 },
- { .sysinfo_str = "manufacturer", .dt_str = "compatible", 1 },
+ { .si_str = "product", .dt_str = "model", 2 },
+ { .si_str = "manufacturer", .dt_str = "compatible", 1 },
};
/**
@@ -108,12 +108,12 @@ struct smbios_write_method {
const char *subnode_name;
};
-static const struct map_sysinfo *convert_sysinfo_to_dt(const char *sysinfo_str)
+static const struct map_sysinfo *convert_sysinfo_to_dt(const char *si)
{
int i;
for (i = 0; i < ARRAY_SIZE(sysinfo_to_dt); i++) {
- if (!strcmp(sysinfo_str, sysinfo_to_dt[i].sysinfo_str))
+ if (!strcmp(si, sysinfo_to_dt[i].si_str))
return &sysinfo_to_dt[i];
}