Changeset 8c19cf28 in mainline for kernel/generic/include/atomic.h


Ignore:
Timestamp:
2006-11-30T15:38:06Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7c34822e
Parents:
c55dd58
Message:

cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/atomic.h

    rc55dd58 r8c19cf28  
    4444static inline void atomic_set(atomic_t *val, long i)
    4545{
    46         val->count = i;
     46        val->count = i;
    4747}
    4848
    4949static inline long atomic_get(atomic_t *val)
    5050{
    51         return val->count;
     51        return val->count;
    5252}
    5353
Note: See TracChangeset for help on using the changeset viewer.