Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ARM: dts: socfpga: add #address-cells and #size-cells for sram node

Add #address-cells and #size-cells for sram node to fix below DTB_CHECK
warnings:

socfpga_arria5_socdk.dtb: sram@ffff0000 (mmio-sram): '#size-cells' is a
required property from schema $id: http://devicetree.org/schemas/sram/sram.yaml

Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>

+6
+3
arch/arm/boot/dts/intel/socfpga/socfpga.dtsi
··· 785 785 ocram: sram@ffff0000 { 786 786 compatible = "mmio-sram"; 787 787 reg = <0xffff0000 0x10000>; 788 + #address-cells = <0x1>; 789 + #size-cells = <0x1>; 790 + ranges; 788 791 }; 789 792 790 793 qspi: spi@ff705000 {
+3
arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi
··· 686 686 ocram: sram@ffe00000 { 687 687 compatible = "mmio-sram"; 688 688 reg = <0xffe00000 0x40000>; 689 + #address-cells = <1>; 690 + #size-cells = <1>; 691 + ranges; 689 692 }; 690 693 691 694 eccmgr: eccmgr {