Browse Source

[FIXUP/OFW] rt_ofw_foreach_node_by_compatible args

Signed-off-by: GuEe-GUI <2991707448@qq.com>
GuEe-GUI 10 months ago
parent
commit
9fd9c1ee45
1 changed files with 3 additions and 3 deletions
  1. 3 3
      components/drivers/include/drivers/ofw.h

+ 3 - 3
components/drivers/include/drivers/ofw.h

@@ -376,9 +376,9 @@ rt_inline rt_bool_t rt_ofw_node_is_type(const struct rt_ofw_node *np, const char
     for (np = rt_ofw_find_node_by_type(RT_NULL, type); np;  \
          np = rt_ofw_find_node_by_type(np, type))
 
-#define rt_ofw_foreach_node_by_compatible(np, type, compatible)                 \
-    for (np = rt_ofw_find_node_by_compatible(RT_NULL, type, compatible); np;    \
-         np = rt_ofw_find_node_by_compatible(np, type, compatible))
+#define rt_ofw_foreach_node_by_compatible(np, compatible)               \
+    for (np = rt_ofw_find_node_by_compatible(RT_NULL, compatible); np;  \
+         np = rt_ofw_find_node_by_compatible(np, compatible))
 
 #define rt_ofw_foreach_node_by_ids_r(np, id, ids)           \
     for (np = rt_ofw_find_node_by_ids_r(RT_NULL, ids, id);  \