gpiosim: initialize the bank's num_lines field to 1
authorBartosz Golaszewski <brgl@bgdev.pl>
Mon, 25 Apr 2022 12:35:56 +0000 (14:35 +0200)
committerBartosz Golaszewski <brgl@bgdev.pl>
Mon, 25 Apr 2022 12:41:55 +0000 (14:41 +0200)
If we create a simulated chip and never set the num_lines property, the
num_lines field remains set to 0 and the potential lineX and hog
directories within the bank's directory will not get removed so the
removal of the bank's and device's directories will fail too leaving
a dangling chip in place.

Initialize bank->num_lines to 1 to avoid this issue.

Fixes: a2f6e8cd3540 ("libgpiosim: new library for controlling the gpio-sim module")
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
tests/gpiosim/gpiosim.c

index 6e36dfd9a20abf63402354010f7e35dc4fe65207..0ce0fd032336c6bc144c181462aae5af8bf77e8b 100644 (file)
@@ -781,6 +781,7 @@ gpiosim_bank_new(struct gpiosim_dev *dev, const char *name)
        bank->cfs_dir_fd = configfs_fd;
        bank->dev = gpiosim_dev_ref(dev);
        bank->item_name = item_name;
+       bank->num_lines = 1;
 
        return bank;