From 7fd05cbf10351b2d1c578c95d47503a63e3fe6bc Mon Sep 17 00:00:00 2001 From: Nikita Shubin Date: Mon, 9 Dec 2024 15:23:37 +0300 Subject: [PATCH] core: allow cuse created gpiochip Add this to check if device was created via cuse and allow it. This assumes no other device present on system. Signed-off-by: Nikita Shubin --- lib/internal.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/internal.c b/lib/internal.c index 56cb8b9..63f05c9 100644 --- a/lib/internal.c +++ b/lib/internal.c @@ -64,10 +64,12 @@ bool gpiod_check_gpiochip_device(const char *path, bool set_errno) */ errno = 0; - if (strcmp(sysfsp, "/sys/bus/gpio") != 0) { - /* This is a character device but not the one we're after. */ - errno = ENODEV; - goto out_free_sysfsp; + if (strcmp(sysfsp, "/sys/class/cuse") != 0) { + if (strcmp(sysfsp, "/sys/bus/gpio") != 0) { + /* This is a character device but not the one we're after. */ + errno = ENODEV; + goto out_free_sysfsp; + } } ret = true; -- 2.30.2