diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-11-27 14:29:23 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-11-27 14:29:23 +0100 |
commit | 96ba18ffd09cc063b8d1ddc8c6cafea6177c8259 (patch) | |
tree | 31a45301681540673a92b7f654d8f694d88422f8 /arch/arm | |
parent | a572c9dd837645992b7c3a18240dceb127c7fa70 (diff) | |
parent | 2eb04ae010a8fb165ba7aa56e9aa8e7980887dee (diff) | |
download | op-kernel-dev-96ba18ffd09cc063b8d1ddc8c6cafea6177c8259.zip op-kernel-dev-96ba18ffd09cc063b8d1ddc8c6cafea6177c8259.tar.gz |
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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-mvebu/coherency.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/coherency.c b/arch/arm/mach-mvebu/coherency.c index 2bdc323..044b511 100644 --- a/arch/arm/mach-mvebu/coherency.c +++ b/arch/arm/mach-mvebu/coherency.c @@ -400,6 +400,8 @@ int __init coherency_init(void) type == COHERENCY_FABRIC_TYPE_ARMADA_380) armada_375_380_coherency_init(np); + of_node_put(np); + return 0; } |