Commit 96ba18ffd09cc063b8d1ddc8c6cafea6177c8259

Authored by Arnd Bergmann

Merge tag 'mvebu-fixes-3.18-2' of git://git.infradead.org/linux-mvebu into fixes

Pull "mvebu fixes for v3.18 (round 2)" frm Jason Cooper:

 - mvebu
    - coherency.c needed an of_node_put()

* tag 'mvebu-fixes-3.18-2' of git://git.infradead.org/linux-mvebu:
  ARM: mvebu: add missing of_node_put() call in coherency.c

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Showing 1 changed file Side-by-side Diff

arch/arm/mach-mvebu/coherency.c
... ... @@ -400,6 +400,8 @@
400 400 type == COHERENCY_FABRIC_TYPE_ARMADA_380)
401 401 armada_375_380_coherency_init(np);
402 402  
  403 + of_node_put(np);
  404 +
403 405 return 0;
404 406 }
405 407