diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-08-28 11:42:08 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-09-25 09:46:15 -0600 |
commit | 8ae8da10b339349586daad0ceb5c0cb655b5ef6d (patch) | |
tree | 9a996e97845db0d4ecb89c519b07cfbc215f2d9e /drivers/cpu | |
parent | 48609d0789f811014b33e6eefc2c27c99be7fea7 (diff) | |
download | u-boot-8ae8da10b339349586daad0ceb5c0cb655b5ef6d.tar.gz u-boot-8ae8da10b339349586daad0ceb5c0cb655b5ef6d.tar.bz2 u-boot-8ae8da10b339349586daad0ceb5c0cb655b5ef6d.zip |
sandbox: correct cpu nodes
The cpu nodes in arch/sandbox/dts/test.dts should conform to the devicetree
specification:
* property device_type must be set to "cpu"
* the reg property must be provided
* the cpu nodes must have an address
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/cpu')
-rw-r--r-- | drivers/cpu/cpu_sandbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpu/cpu_sandbox.c b/drivers/cpu/cpu_sandbox.c index fe6772ba5a..2e871fe313 100644 --- a/drivers/cpu/cpu_sandbox.c +++ b/drivers/cpu/cpu_sandbox.c @@ -38,7 +38,7 @@ static int cpu_sandbox_get_vendor(const struct udevice *dev, char *buf, return 0; } -static const char *cpu_current = "cpu-test1"; +static const char *cpu_current = "cpu@1"; void cpu_sandbox_set_current(const char *name) { |