Skip to content

Commit 2e167b3

Browse files
Stanislav Jakubekffainelli
authored andcommitted
ARM: dts: bcm21664/23550: use CCU compatibles directly
BCM21664 and BCM23550 DTs for some reason use constants from a header file for their CCU node compatibles. Change these to use the strings directly. Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com> Link: https://lore.kernel.org/r/65c54bd4076d646623d2a2f518631435522dc628.1685127525.git.stano.jakubek@gmail.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
1 parent 9038af9 commit 2e167b3

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

arch/arm/boot/dts/bcm21664.dtsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,21 +285,21 @@
285285
};
286286

287287
root_ccu: root_ccu@35001000 {
288-
compatible = BCM21664_DT_ROOT_CCU_COMPAT;
288+
compatible = "brcm,bcm21664-root-ccu";
289289
reg = <0x35001000 0x0f00>;
290290
#clock-cells = <1>;
291291
clock-output-names = "frac_1m";
292292
};
293293

294294
aon_ccu: aon_ccu@35002000 {
295-
compatible = BCM21664_DT_AON_CCU_COMPAT;
295+
compatible = "brcm,bcm21664-aon-ccu";
296296
reg = <0x35002000 0x0f00>;
297297
#clock-cells = <1>;
298298
clock-output-names = "hub_timer";
299299
};
300300

301301
master_ccu: master_ccu@3f001000 {
302-
compatible = BCM21664_DT_MASTER_CCU_COMPAT;
302+
compatible = "brcm,bcm21664-master-ccu";
303303
reg = <0x3f001000 0x0f00>;
304304
#clock-cells = <1>;
305305
clock-output-names = "sdio1",
@@ -313,7 +313,7 @@
313313
};
314314

315315
slave_ccu: slave_ccu@3e011000 {
316-
compatible = BCM21664_DT_SLAVE_CCU_COMPAT;
316+
compatible = "brcm,bcm21664-slave-ccu";
317317
reg = <0x3e011000 0x0f00>;
318318
#clock-cells = <1>;
319319
clock-output-names = "uartb",

arch/arm/boot/dts/bcm23550.dtsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,21 +371,21 @@
371371
};
372372

373373
root_ccu: root_ccu@35001000 {
374-
compatible = BCM21664_DT_ROOT_CCU_COMPAT;
374+
compatible = "brcm,bcm21664-root-ccu";
375375
reg = <0x35001000 0x0f00>;
376376
#clock-cells = <1>;
377377
clock-output-names = "frac_1m";
378378
};
379379

380380
aon_ccu: aon_ccu@35002000 {
381-
compatible = BCM21664_DT_AON_CCU_COMPAT;
381+
compatible = "brcm,bcm21664-aon-ccu";
382382
reg = <0x35002000 0x0f00>;
383383
#clock-cells = <1>;
384384
clock-output-names = "hub_timer";
385385
};
386386

387387
slave_ccu: slave_ccu@3e011000 {
388-
compatible = BCM21664_DT_SLAVE_CCU_COMPAT;
388+
compatible = "brcm,bcm21664-slave-ccu";
389389
reg = <0x3e011000 0x0f00>;
390390
#clock-cells = <1>;
391391
clock-output-names = "uartb",
@@ -398,7 +398,7 @@
398398
};
399399

400400
master_ccu: master_ccu@3f001000 {
401-
compatible = BCM21664_DT_MASTER_CCU_COMPAT;
401+
compatible = "brcm,bcm21664-master-ccu";
402402
reg = <0x3f001000 0x0f00>;
403403
#clock-cells = <1>;
404404
clock-output-names = "sdio1",

0 commit comments

Comments
 (0)