diff options
| author | Linus Torvalds <[email protected]> | 2024-06-08 09:03:46 -0700 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2024-06-08 09:03:46 -0700 | 
| commit | bbc5332b8cda95cd081cff9c405c1cfece872f20 (patch) | |
| tree | 5dde6c2ace35b3c72111edcc41db6752c17df293 /scripts/atomic/kerneldoc/sub_and_test | |
| parent | dc772f8237f9b0c9ea3f34d0dc4a57d1f6a5070d (diff) | |
| parent | f92a59f6d12e31ead999fee9585471b95a8ae8a3 (diff) | |
Merge tag 'locking-urgent-2024-06-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull locking doc fix from Ingo Molnar:
 "Fix typos in the kerneldoc of some of the atomic APIs"
* tag 'locking-urgent-2024-06-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  locking/atomic: scripts: fix ${atomic}_sub_and_test() kerneldoc
Diffstat (limited to 'scripts/atomic/kerneldoc/sub_and_test')
| -rw-r--r-- | scripts/atomic/kerneldoc/sub_and_test | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scripts/atomic/kerneldoc/sub_and_test b/scripts/atomic/kerneldoc/sub_and_test index d3760f7749d4..96615e50836b 100644 --- a/scripts/atomic/kerneldoc/sub_and_test +++ b/scripts/atomic/kerneldoc/sub_and_test @@ -1,7 +1,7 @@  cat <<EOF  /**   * ${class}${atomicname}() - atomic subtract and test if zero with ${desc_order} ordering - * @i: ${int} value to add + * @i: ${int} value to subtract   * @v: pointer to ${atomic}_t   *   * Atomically updates @v to (@v - @i) with ${desc_order} ordering. |