Thread (11 messages) 11 messages, 3 authors, 2015-10-15

[PATCH V2 6/6] gicv2m: acpi: Introducing GICv2m ACPI support

From: Tomasz Nowicki <hidden>
Date: 2015-10-15 06:29:48
Also in: linux-acpi, lkml

On 15.10.2015 08:15, Tomasz Nowicki wrote:
Hi Suravee,
[...]
Moreover, seems we need to add irq_domain_free_fwnode to gicv2m_teardown():
  static void gicv2m_teardown(void)
  {
      struct v2m_data *v2m, *tmp;

      list_for_each_entry_safe(v2m, tmp, &v2m_nodes, entry) {
+        struct fwnode_handle *handle = v2m->fwnode;
+
          list_del(&v2m->entry);
          kfree(v2m->bm);
          iounmap(v2m->base);
-        of_node_put(to_of_node(v2m->fwnode));
+        if (is_of_node(handle))
+            of_node_put(to_of_node(handle));
+        else if (is_irqchip_node(handle))
+            irq_domain_free_fwnode(handle);
          kfree(v2m);
      }
  }
Sorry, I missed you already did something similar in your patch.

Tomasz
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help