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:
Kumar Gala 2018-12-13 11:38:33 -06:00 committed by Carles Cufí
commit 523932ccb0
3 changed files with 6 additions and 6 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";