dts: nrf: Fix device tree warnings
Fix the following warning that shows up in some NRF device tree files: Warning (simple_bus_reg): /soc/pwm@4001C000: simple-bus unit address format error, expected "4001c000" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
417cfdd833
commit
523932ccb0
3 changed files with 6 additions and 6 deletions
|
@ -93,9 +93,9 @@
|
|||
label = "I2C_0";
|
||||
};
|
||||
|
||||
pwm0: pwm@4001C000 {
|
||||
pwm0: pwm@4001c000 {
|
||||
compatible = "nordic,nrf-pwm";
|
||||
reg = <0x4001C000 0x1000>;
|
||||
reg = <0x4001c000 0x1000>;
|
||||
interrupts = <28 1>;
|
||||
status = "disabled";
|
||||
label = "PWM_0";
|
||||
|
|
|
@ -111,9 +111,9 @@
|
|||
label = "I2C_1";
|
||||
};
|
||||
|
||||
pwm0: pwm@4001C000 {
|
||||
pwm0: pwm@4001c000 {
|
||||
compatible = "nordic,nrf-pwm";
|
||||
reg = <0x4001C000 0x1000>;
|
||||
reg = <0x4001c000 0x1000>;
|
||||
interrupts = <28 1>;
|
||||
status = "disabled";
|
||||
label = "PWM_0";
|
||||
|
|
|
@ -136,9 +136,9 @@
|
|||
label = "I2C_1";
|
||||
};
|
||||
|
||||
pwm0: pwm@4001C000 {
|
||||
pwm0: pwm@4001c000 {
|
||||
compatible = "nordic,nrf-pwm";
|
||||
reg = <0x4001C000 0x1000>;
|
||||
reg = <0x4001c000 0x1000>;
|
||||
interrupts = <28 1>;
|
||||
status = "disabled";
|
||||
label = "PWM_0";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue