mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 02:15:57 +00:00
misc: apds990x: use 'time_left' variable with wait_event_interruptible_timeout()
There is a confusing pattern in the kernel to use a variable named 'timeout' to store the result of wait_event_interruptible_timeout() causing patterns like: timeout = wait_event_interruptible_timeout(...) if (!timeout) return -ETIMEDOUT; with all kinds of permutations. Use 'time_left' as a variable to make the code self explaining. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Link: https://lore.kernel.org/r/20240604212240.4529-2-wsa+renesas@sang-engineering.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
36c55ce870
commit
71f592d204
@ -625,15 +625,15 @@ static ssize_t apds990x_lux_show(struct device *dev,
|
|||||||
struct apds990x_chip *chip = dev_get_drvdata(dev);
|
struct apds990x_chip *chip = dev_get_drvdata(dev);
|
||||||
ssize_t ret;
|
ssize_t ret;
|
||||||
u32 result;
|
u32 result;
|
||||||
long timeout;
|
long time_left;
|
||||||
|
|
||||||
if (pm_runtime_suspended(dev))
|
if (pm_runtime_suspended(dev))
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|
||||||
timeout = wait_event_interruptible_timeout(chip->wait,
|
time_left = wait_event_interruptible_timeout(chip->wait,
|
||||||
!chip->lux_wait_fresh_res,
|
!chip->lux_wait_fresh_res,
|
||||||
msecs_to_jiffies(APDS_TIMEOUT));
|
msecs_to_jiffies(APDS_TIMEOUT));
|
||||||
if (!timeout)
|
if (!time_left)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|
||||||
mutex_lock(&chip->mutex);
|
mutex_lock(&chip->mutex);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user