core: rename up_to_date to needs_update in struct gpiod_line
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 5 Sep 2019 12:48:57 +0000 (14:48 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 10 Sep 2019 08:43:24 +0000 (10:43 +0200)
commit9462caf743435c1deb83e0e48dfc8af3002bad61
tree8051f798fd755268747051abf7090577760f7aaf
parent87a1d4f6637480ea34a14ef5f498b420cbe242d4
core: rename up_to_date to needs_update in struct gpiod_line

This variable is called up_to_date which can lead readers to the wrong
conclusion that libgpiod can somehow know when external actors (such as
a different process or a kernel driver) change the state of a GPIO line.

This is not the case and libgpiod only ever knows if a line needs info
update when a previous internal call to gpiod_line_update() fails.

The kernel does not provide any notification mechanism currently.

For that reason: rename the variable to needs_update.

While at it: clarify the documentation for gpiod_line_needs_update().

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
include/gpiod.h
lib/core.c