mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
54f884cfce
Move the SPDX-License-Identifier lines to the top. Signed-off-by: Andreas Färber <afaerber@suse.de>
33 lines
521 B
Plaintext
33 lines
521 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2016-2017 Andreas Färber
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "owl-s500-guitar.dtsi"
|
|
|
|
/ {
|
|
compatible = "lemaker,guitar-bb-rev-b", "lemaker,guitar", "actions,s500";
|
|
model = "LeMaker Guitar Base Board rev. B";
|
|
|
|
aliases {
|
|
serial3 = &uart3;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial3:115200n8";
|
|
};
|
|
|
|
uart3_clk: uart3-clk {
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <921600>;
|
|
#clock-cells = <0>;
|
|
};
|
|
};
|
|
|
|
&uart3 {
|
|
status = "okay";
|
|
clocks = <&uart3_clk>;
|
|
};
|