summaryrefslogtreecommitdiff
path: root/common/machine_id.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-10-01 08:54:12 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-10-02 05:47:18 +0200
commitcd2891b2949474aaf0b549ed5d697ef2143df9db (patch)
tree21d3b59dc8db14f0ac9be8e5a947e8a4fabd3629 /common/machine_id.c
parenta6b630f139416a05b158b6368cb9ee99738b20f4 (diff)
downloadbarebox-cd2891b2949474aaf0b549ed5d697ef2143df9db.tar.gz
magicvar: Replace BAREBOX_MAGICVAR_NAMED with BAREBOX_MAGICVAR
BAREBOX_MAGICVAR now generates a unique identifier automatically, so we can convert users of BAREBOX_MAGICVAR_NAMED to the simpler BAREBOX_MAGICVAR macro. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/machine_id.c')
-rw-r--r--common/machine_id.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/machine_id.c b/common/machine_id.c
index e678bb7fe8..c1309ccafd 100644
--- a/common/machine_id.c
+++ b/common/machine_id.c
@@ -66,4 +66,4 @@ out:
}
late_initcall(machine_id_set_bootarg);
-BAREBOX_MAGICVAR_NAMED(global_machine_id, global.machine_id, "Persistent device-specific, hexadecimal, 32-character id");
+BAREBOX_MAGICVAR(global.machine_id, "Persistent device-specific, hexadecimal, 32-character id");