Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 431f46f9 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "iopoll: change uS to us in comments"

parents bbab5447 77b9dbd3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@
 * @addr: Address to poll
 * @val: Variable to read the value into
 * @cond: Break condition (usually involving @val)
 * @sleep_us: Maximum time to sleep between reads in uS (0 tight-loops)
 * @timeout_us: Timeout in uS, 0 means never timeout
 * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops)
 * @timeout_us: Timeout in us, 0 means never timeout
 *
 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
 * case, the last read value at @addr is stored in @val. Must not
@@ -79,7 +79,7 @@
 * @addr: Address to poll
 * @val: Variable to read the value into
 * @cond: Break condition (usually involving @val)
 * @sleep_us: Maximum time to sleep between reads in uS (0 tight-loops)
 * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops)
 *
 * Must not be called from atomic context if sleep_us is used.
 */
@@ -91,7 +91,7 @@
 * @addr: Address to poll
 * @val: Variable to read the value into
 * @cond: Break condition (usually involving @val)
 * @timeout_us: Timeout in uS, 0 means never timeout
 * @timeout_us: Timeout in us, 0 means never timeout
 *
 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
 * case, the last read value at @addr is stored in @val. Must not