gpio: sim: initialize a managed pointer when declaring it
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Sun, 17 Sep 2023 08:58:37 +0000 (10:58 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 25 Sep 2023 06:41:07 +0000 (08:41 +0200)
commit9f93f18305f5777820491e6ab9b34422c160371b
tree7e5f76a0187abe5c4808420e8fa457f23739817f
parentdb8588f95cc5e4c9d134f7f4f939b1eade419560
gpio: sim: initialize a managed pointer when declaring it

Variables managed with __free() should typically be initialized where
they are declared so that the __free() callback is paired with its
counterpart resource allocator. Fix the second instance of using
__free() in gpio-sim to follow this pattern.

Fixes: 3faf89f27aab ("gpio: sim: simplify code with cleanup helpers")
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-sim.c