zephyr/boards/arc/em_starterkit/em_starterkit_em11d.dts
Ulf Magnusson a84ded74ea dts: Replace status = "ok" with status = "okay"
The DT spec. only has "okay" and not "ok". The Linux kernel has around
12k "okay"s and 300 "ok"s.

The scripts/dts scripts only check for "disabled", so should be safe re.
those at least.

The replacement was done with

    git ls-files | xargs sed -i 's/status\s*=\s*"ok"/status = "okay"/'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-06-14 19:51:13 -05:00

43 lines
646 B
Plaintext

/*
* Copyright (c) 2018, Synopsys, Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <mem.h>
#include <emsk.dtsi>
#include "em_starterkit_r23.dtsi"
#include "board.dtsi"
/ {
model = "em_starterkit-em11d";
compatible = "snps,em_starterkit-em11d", "snps,em_starterkit";
aliases {
uart-0 = &uart0;
uart-1 = &uart1;
uart-2 = &uart2;
};
chosen {
zephyr,sram = &ddr0;
zephyr,console = &uart1;
zephyr,shell-uart = &uart1;
};
iccm@0 {
reg = <0x0 DT_SIZE_K(64)>;
};
dccm@80000000 {
reg = <0x80000000 DT_SIZE_K(64)>;
};
};
&uart1 {
status = "okay";
current-speed = <115200>;
};