12345678910111213141516171819202122232425 |
- /*
- * arch/arm/include/asm/atomic.h
- *
- * Copyright (C) 1996 Russell King.
- * Copyright (C) 2002 Deep Blue Solutions Ltd.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
- #ifndef __ASM_ARM_ATOMIC_H
- #define __ASM_ARM_ATOMIC_H
- #include <linux/compiler.h>
- #include <linux/types.h>
- #include <linux/irqflags.h>
- #include <asm/barrier.h>
- #include <asm/cmpxchg.h>
- #define ATOMIC_INIT(i) { (i) }
- #ifdef __KERNEL__
- /*
- * On ARM, ordinary assignment (str instruction) doesn't clear the local
|