Linux GPIO subsystem development
 help / color / mirror / Atom feed
* [PATCH 2/2] core: Removing unnecessary check for monitoring multiple lines.
@ 2020-02-08 10:01 Daniel Mor
  2020-02-09 11:27 ` Bartosz Golaszewski
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Mor @ 2020-02-08 10:01 UTC (permalink / raw)
  To: linux-gpio; +Cc: Daniel Mor

In case when needed to monitor multiple line`s on different chip`s
function gpiod_line_event_wait_bulk() blocking it, by checking if
the line`s in a bulk from same chip.
In current state the API forsing the user to wait for notification on multiple threads.

Signed-off-by: Daniel Mor <dmlinuxnewbie@gmail.com>
---
 lib/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/core.c b/lib/core.c
index ed63012..2a46074 100644
--- a/lib/core.c
+++ b/lib/core.c
@@ -977,7 +977,7 @@ int gpiod_line_event_wait_bulk(struct gpiod_line_bulk *bulk,
 	struct gpiod_line *line;
 	int rv;
 
-	if (!line_bulk_same_chip(bulk) || !line_bulk_all_requested(bulk))
+	if (!line_bulk_all_requested(bulk))
 		return -1;
 
 	memset(fds, 0, sizeof(fds));
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-09 11:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-08 10:01 [PATCH 2/2] core: Removing unnecessary check for monitoring multiple lines Daniel Mor
2020-02-09 11:27 ` Bartosz Golaszewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox