core: relax gpiod_is_gpiochip_device() even more
authorBartosz Golaszewski <brgl@bgdev.pl>
Thu, 1 Apr 2021 09:15:46 +0000 (11:15 +0200)
committerBartosz Golaszewski <brgl@bgdev.pl>
Fri, 2 Apr 2021 13:58:18 +0000 (15:58 +0200)
commit30846980605b472869b977ab12f83c30b8c9e27f
tree00af766e42e6c22f380f604e56845988692e01f0
parentecacb510b184d73ce7e6c49db339be5f6935d83a
core: relax gpiod_is_gpiochip_device() even more

Currently libgpiod requires that the GPIO chip character device be named
'gpiochip%u' in devfs. However it's a perfectly valid use-case to have
the device file renamed by udev (or equivalent) to anything else.

Modify gpiod_is_gpiochip_device() to check the major and minor device
numbers first and then ensure that the device in question is associated
with the GPIO subsystem. No longer check the name.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
lib/core.c