gpio: ml-ioh: Fix buffer underwrite on probe error path
authorAnton Vasilyev <vasilyev@ispras.ru>
Mon, 23 Jul 2018 16:53:30 +0000 (19:53 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Sun, 29 Jul 2018 21:13:09 +0000 (23:13 +0200)
commit4bf4eed44bfe288f459496eaf38089502ef91a79
tree3f1af71b313121cabf918729adc11744aa4210d4
parent1777fc97302997f016b720fea9c4d0e1ad858f56
gpio: ml-ioh: Fix buffer underwrite on probe error path

If ioh_gpio_probe() fails on devm_irq_alloc_descs() then chip may point
to any element of chip_save array, so reverse iteration from pointer chip
may become chip_save[-1] and gpiochip_remove() will operate with wrong
memory.

The patch fix the error path of ioh_gpio_probe() to correctly bypass
chip_save array.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Anton Vasilyev <vasilyev@ispras.ru>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-ml-ioh.c