Skip to content

Commit

Permalink
[MIPS] Fix documentation typos.
Browse files Browse the repository at this point in the history
    
Signed-off-by: Arnaud Giersch <[email protected]>
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
agiersch authored and ralfbaechle committed Nov 17, 2005
1 parent 99289a4 commit f10d14d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions include/asm-mips/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,12 @@ static __inline__ int atomic_sub_return(int i, atomic_t * v)
}

/*
* atomic_sub_if_positive - add integer to atomic variable
* atomic_sub_if_positive - conditionally subtract integer from atomic variable
* @i: integer value to subtract
* @v: pointer of type atomic_t
*
* Atomically test @v and decrement if it is greater than 0.
* The function returns the old value of @v minus 1.
* Atomically test @v and subtract @i if @v is greater or equal than @i.
* The function returns the old value of @v minus @i.
*/
static __inline__ int atomic_sub_if_positive(int i, atomic_t * v)
{
Expand Down Expand Up @@ -577,11 +578,12 @@ static __inline__ long atomic64_sub_return(long i, atomic64_t * v)
}

/*
* atomic64_sub_if_positive - add integer to atomic variable
* atomic64_sub_if_positive - conditionally subtract integer from atomic variable
* @i: integer value to subtract
* @v: pointer of type atomic64_t
*
* Atomically test @v and decrement if it is greater than 0.
* The function returns the old value of @v minus 1.
* Atomically test @v and subtract @i if @v is greater or equal than @i.
* The function returns the old value of @v minus @i.
*/
static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v)
{
Expand Down

0 comments on commit f10d14d

Please sign in to comment.