tests: gpio-mockup: don't allocate the chip structure twice
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 5 Jul 2019 14:47:39 +0000 (16:47 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 5 Jul 2019 14:47:39 +0000 (16:47 +0200)
commitb62c0a81712646214cb1bea98649e76f39ead2d0
treee0a577811620e38551a72382fc9ea835d8c0afa6
parent97eaabfcd088897d3226a538a53fdb1ec160c0b1
tests: gpio-mockup: don't allocate the chip structure twice

We incorrectly allocate the chip structure twice: once in
gpio_mockup_probe() and then again in make_chip() which leads to a
memory leak. Remove the first instance as it's the one that's
unnecessary.

Fixes: e43e46d4f79c ("tests: mockup: add a library for controlling the gpio-mockup module")
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/mockup/gpio-mockup.c