We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 764ca3e commit f978f41Copy full SHA for f978f41
hw/arm/imx8mp-evk.c
@@ -19,7 +19,22 @@
19
20
static void imx8mp_evk_modify_dtb(const struct arm_boot_info *info, void *fdt)
21
{
22
- int offset;
+ int i, offset;
23
+
24
+ /* Temporarily disable following nodes until they are implemented */
25
+ const char *nodes_to_remove[] = {
26
+ "nxp,imx8mp-fspi",
27
+ };
28
29
+ for (i = 0; i < ARRAY_SIZE(nodes_to_remove); i++) {
30
+ const char *dev_str = nodes_to_remove[i];
31
32
+ offset = fdt_node_offset_by_compatible(fdt, -1, dev_str);
33
+ while (offset >= 0) {
34
+ fdt_nop_node(fdt, offset);
35
+ offset = fdt_node_offset_by_compatible(fdt, offset, dev_str);
36
+ }
37
38
39
/* Remove cpu-idle-states property from CPU nodes */
40
offset = fdt_node_offset_by_compatible(fdt, -1, "arm,cortex-a53");
0 commit comments