Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6408b6fb authored by Davidlohr Bueso's avatar Davidlohr Bueso Committed by Linus Torvalds
Browse files

m32r: 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/1482896994-25863-1-git-send-email-dave@stgolabs.net


Signed-off-by: default avatarDavidlohr Bueso <dbueso@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7659c655
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line

generic-y += clkdev.h
generic-y += current.h
generic-y += exec.h
generic-y += irq_work.h
generic-y += kvm_para.h

arch/m32r/include/asm/current.h

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
#ifndef _ASM_M32R_CURRENT_H
#define _ASM_M32R_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	/* _ASM_M32R_CURRENT_H */