]> git.karo-electronics.de Git - karo-tx-linux.git/commit
MIPS: ralink: Fix request_mem_region error handling
authorArnd Bergmann <arnd@arndb.de>
Tue, 17 Jan 2017 15:18:42 +0000 (16:18 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 25 Jan 2017 01:51:10 +0000 (02:51 +0100)
commit6d2700a95f7387f389d320ef87f33b7661fc1af5
treeae3ad75974599c3b16827332a887b59469312591
parentd92240d12a9c010e0094bbc9280aae4a6be9a2d5
MIPS: ralink: Fix request_mem_region error handling

request_mem_region returns a NULL pointer on error, comparing it
against a number results in a warning:

arch/mips/ralink/of.c: In function 'plat_of_remap_node':
arch/mips/ralink/of.c:45:15: error: ordered comparison of pointer with integer zero [-Werror=extra]
arch/mips/ralink/irq.c: In function 'intc_of_init':
arch/mips/ralink/irq.c:167:15: error: ordered comparison of pointer with integer zero [-Werror=extra]

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: John Crispin <john@phrozen.org>
Cc: Tobias Wolf <dev-NTEO@vplace.de>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/15045/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/ralink/irq.c
arch/mips/ralink/of.c