diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-01-29 14:45:33 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-01-29 14:45:33 +0100 |
commit | 4cd90083d32574e52ac839c6c7e4ff445ac4472c (patch) | |
tree | c8d68883461bce5f03828e148a679b2425eb2e15 /drivers | |
parent | Merge tag 'char-misc-5.17-rc2' of git://git.kernel.org/pub/scm/linux/kernel/g... (diff) | |
parent | gpio: sim: add doc file to index file (diff) | |
download | linux-4cd90083d32574e52ac839c6c7e4ff445ac4472c.tar.xz linux-4cd90083d32574e52ac839c6c7e4ff445ac4472c.zip |
Merge tag 'gpio-fixes-for-v5.17-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
Pull gpio fixes from Bartosz Golaszewski:
"Two fixes for the gpio-simulator:
- fix a bug with hogs not being set-up in gpio-sim when user-space
sets the chip label to an empty string
- include the gpio-sim documentation in the index"
* tag 'gpio-fixes-for-v5.17-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
gpio: sim: add doc file to index file
gpio: sim: check the label length when setting up device properties
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-sim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-sim.c b/drivers/gpio/gpio-sim.c index 838bbfed11d3..04b137eca8da 100644 --- a/drivers/gpio/gpio-sim.c +++ b/drivers/gpio/gpio-sim.c @@ -816,7 +816,7 @@ gpio_sim_make_bank_swnode(struct gpio_sim_bank *bank, properties[prop_idx++] = PROPERTY_ENTRY_U32("ngpios", bank->num_lines); - if (bank->label) + if (bank->label && (strlen(bank->label) > 0)) properties[prop_idx++] = PROPERTY_ENTRY_STRING("gpio-sim,label", bank->label); |