Skip to content

Commit

Permalink
camkes-vm-apps: use empty list
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
Axel Heider committed Jan 2, 2024
1 parent cfb4cb9 commit 0bdba23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/Arm/vm_multi/exynos5422/devices.camkes
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ assembly {
"0x48000000:27" //RAM
];
vm1.irqs = [];
vm1.dtb = dtb([{}]);
vm1.dtb = dtb([]);

vm2.linux_address_config = {
"linux_ram_base" : VAR_STRINGIZE(VM2_RAM_BASE),
Expand All @@ -112,7 +112,7 @@ assembly {
"0x50000000:27" //RAM
];
vm2.irqs = [];
vm2.dtb = dtb([{}]);
vm2.dtb = dtb([]);

}
}
4 changes: 2 additions & 2 deletions apps/Arm/vm_multi/qemu-arm-virt/devices.camkes
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ assembly {
vm1.untyped_mmios = [
"0x48000000:27", // Linux kernel memory regions
];
vm1.dtb = dtb([{}]);
vm1.dtb = dtb([]);

vm2.linux_address_config = {
"linux_ram_base" : VAR_STRINGIZE(VM2_RAM_BASE),
Expand All @@ -101,6 +101,6 @@ assembly {
vm2.untyped_mmios = [
"0x50000000:27", // Linux kernel memory regions
];
vm2.dtb = dtb([{}]);
vm2.dtb = dtb([]);
}
}

0 comments on commit 0bdba23

Please sign in to comment.