tclib: Fix compile warnings
[sfrench/cifs-2.6.git] / arch / sparc64 / kernel / semaphore.c
index a809e63f03ef8f63f37ece764d1ee26a3db297b1..9974a68995519dc3edd021cad5377638322deb48 100644 (file)
@@ -1,5 +1,4 @@
-/* $Id: semaphore.c,v 1.9 2001/11/18 00:12:56 davem Exp $
- * semaphore.c: Sparc64 semaphore implementation.
+/* semaphore.c: Sparc64 semaphore implementation.
  *
  * This is basically the PPC semaphore scheme ported to use
  * the sparc64 atomic instructions, so see the PPC code for
@@ -19,7 +18,7 @@
  *     sem->count = tmp;
  *     return old_count;
  */
-static __inline__ int __sem_update_count(struct semaphore *sem, int incr)
+static inline int __sem_update_count(struct semaphore *sem, int incr)
 {
        int old_count, tmp;