diff options
author | Anton Habegger <anton.habegger@gmail.com> | 2015-01-22 22:29:10 +0100 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2015-01-28 07:42:35 +0100 |
commit | dc2884315d492b1eefd9d32443c1f0aa3c0a991e (patch) | |
tree | 91247ed75616bc3e530ab1866786e5a66b748dae /fs/ubifs/ubifs.h | |
parent | 40da2a2a08f12015d06d78a334e4d977963fee34 (diff) | |
download | u-boot-imx-dc2884315d492b1eefd9d32443c1f0aa3c0a991e.zip u-boot-imx-dc2884315d492b1eefd9d32443c1f0aa3c0a991e.tar.gz u-boot-imx-dc2884315d492b1eefd9d32443c1f0aa3c0a991e.tar.bz2 |
ubifs: Import atomic_long operations from Linux
This commit is a preperation for a subsequent UBIFS commit
which needs atomic_long operations.
Therefor "include/asm-generic/atomic-long.h" is imported
from 1860e37 Linux 3.15
Signed-off-by: Anton Habegger <anton.habegger@gmail.com>
Diffstat (limited to 'fs/ubifs/ubifs.h')
-rw-r--r-- | fs/ubifs/ubifs.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index c120261..a51b237 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h @@ -31,6 +31,8 @@ #include <linux/backing-dev.h> #include "ubifs-media.h" #else +#include <asm/atomic.h> +#include <asm-generic/atomic-long.h> #include <ubi_uboot.h> #include <linux/ctype.h> @@ -63,16 +65,6 @@ struct page { void iput(struct inode *inode); -/* - * The atomic operations are used for budgeting etc which is not - * needed for the read-only U-Boot implementation: - */ -#define atomic_long_inc(a) -#define atomic_long_dec(a) -#define atomic_long_sub(a, b) - -typedef unsigned long atomic_long_t; - /* linux/include/time.h */ #define NSEC_PER_SEC 1000000000L #define get_seconds() 0 |