diff options
author | Davidlohr Bueso <dave@stgolabs.net> | 2017-02-24 14:55:36 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-24 17:46:53 -0800 |
commit | 8d4a0170026216e315b1a52ba15357b88487fbc8 (patch) | |
tree | 99002c995059911e7156b57adaeb5448df6941a8 /arch/cris/include/asm/current.h | |
parent | f1ef09fde17f9b77ca1435a5b53a28b203afb81c (diff) | |
download | linux-8d4a0170026216e315b1a52ba15357b88487fbc8.tar.gz linux-8d4a0170026216e315b1a52ba15357b88487fbc8.tar.bz2 linux-8d4a0170026216e315b1a52ba15357b88487fbc8.zip |
cris: use generic current.h
Given that the arch does not add its own implementations, simply use the
asm-generic/current.h (generic-y) header instead of duplicating code.
Link: http://lkml.kernel.org/r/1485992878-4780-3-git-send-email-dave@stgolabs.net
Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Cc: Mikael Starvik <starvik@axis.com>
Cc: Jesper Nilsson <jesper.nilsson@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/cris/include/asm/current.h')
-rw-r--r-- | arch/cris/include/asm/current.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/cris/include/asm/current.h b/arch/cris/include/asm/current.h deleted file mode 100644 index 5f5c0efd00be..000000000000 --- a/arch/cris/include/asm/current.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef _CRIS_CURRENT_H -#define _CRIS_CURRENT_H - -#include <linux/thread_info.h> - -struct task_struct; - -static inline struct task_struct * get_current(void) -{ - return current_thread_info()->task; -} - -#define current get_current() - -#endif /* !(_CRIS_CURRENT_H) */ |