On Wed, Mar 20, 2019 at 01:14:00PM -0700, Douglas Anderson wrote: > The device tree compiler yells like this: > Warning (unit_address_vs_reg): > /gpu-opp-table/opp@100000000: > node has a unit name, but no reg property > > Let's match the cpu opp node names and use a dash. > > Signed-off-by: Douglas Anderson <dianders@xxxxxxxxxxxx> > --- > > arch/arm/boot/dts/rk3288.dtsi | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi > index e9f454248398..79cd3c53e737 100644 > --- a/arch/arm/boot/dts/rk3288.dtsi > +++ b/arch/arm/boot/dts/rk3288.dtsi > @@ -1282,27 +1282,27 @@ > gpu_opp_table: gpu-opp-table { > compatible = "operating-points-v2"; > > - opp@100000000 { > + opp-100000000 { > opp-hz = /bits/ 64 <100000000>; > opp-microvolt = <950000>; > }; > - opp@200000000 { > + opp-200000000 { > opp-hz = /bits/ 64 <200000000>; > opp-microvolt = <950000>; > }; > - opp@300000000 { > + opp-300000000 { > opp-hz = /bits/ 64 <300000000>; > opp-microvolt = <1000000>; > }; > - opp@400000000 { > + opp-400000000 { > opp-hz = /bits/ 64 <400000000>; > opp-microvolt = <1100000>; > }; > - opp@500000000 { > + opp-500000000 { > opp-hz = /bits/ 64 <500000000>; > opp-microvolt = <1200000>; > }; > - opp@600000000 { > + opp-600000000 { > opp-hz = /bits/ 64 <600000000>; > opp-microvolt = <1250000>; > }; Reviewed-by: Matthias Kaehlcke <mka@xxxxxxxxxxxx>