Hi
I have added following entry in my dts file.
timer5 {
pinctrl-names = "default";
status = "okay";
DMtimer5 = <&timer5>;
};
But I get error as
Error: arch/arm/boot/dts/......... syntax error
FATAL ERROR: Unable to parse input tree
When I change it to, the error goes
&timer5 {
pinctrl-names = "default";
status = "okay";
DMtimer5 = <&timer5>;
};
My concern is I am not able to create a node with any new name . Please let me know the process to create a node like
my_xyz{
status=ok;
};