pinctrl: rza1: Handle devm_kasprintf() failure cases
authorNicholas Mc Guire <hofrat@osadl.org>
Fri, 7 Dec 2018 10:34:27 +0000 (11:34 +0100)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 18 Dec 2018 10:25:56 +0000 (11:25 +0100)
commitdb221412cd2014506642967155698825ad80f6b6
tree98687520711ef194e7b696d173d638b026dcfdf2
parentf4caa6ee736fa8a46c806ba4382c16f7e5a20248
pinctrl: rza1: Handle devm_kasprintf() failure cases

devm_kasprintf() may return NULL on failure of internal allocation
thus the assignments are not safe if not checked. On error
rza1_pinctrl_register() respectively rza1_parse_gpiochip() return
negative values so -ENOMEM in the (unlikely) failure case of
devm_kasprintf() should be fine here.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Fixes: 5a49b644b307 ("pinctrl: Renesas RZ/A1 pin and gpio controller")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/pinctrl/pinctrl-rza1.c