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

Commit 3750411f authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: fix whitespace damage in thread_info.h

parent b73faf74
Loading
Loading
Loading
Loading
+11 −12
Original line number Diff line number Diff line
/*
 * Copyright 2004-2009 Analog Devices Inc.
 * Copyright 2004-2010 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */
@@ -73,8 +73,7 @@ __attribute_const__
static inline struct thread_info *current_thread_info(void)
{
	struct thread_info *ti;
      __asm__("%0 = sp;" : "=da"(ti) :
	);
	__asm__("%0 = sp;" : "=da"(ti));
	return (struct thread_info *)((long)ti & ~((long)THREAD_SIZE-1));
}

@@ -109,11 +108,11 @@ static inline struct thread_info *current_thread_info(void)
#define _TIF_SYSCALL_TRACE	(1<<TIF_SYSCALL_TRACE)
#define _TIF_SIGPENDING		(1<<TIF_SIGPENDING)
#define _TIF_NEED_RESCHED	(1<<TIF_NEED_RESCHED)
#define _TIF_NOTIFY_RESUME	(1<<TIF_NOTIFY_RESUME)
#define _TIF_POLLING_NRFLAG	(1<<TIF_POLLING_NRFLAG)
#define _TIF_RESTORE_SIGMASK	(1<<TIF_RESTORE_SIGMASK)
#define _TIF_FREEZE		(1<<TIF_FREEZE)
#define _TIF_IRQ_SYNC		(1<<TIF_IRQ_SYNC)
#define _TIF_NOTIFY_RESUME	(1<<TIF_NOTIFY_RESUME)

#define _TIF_WORK_MASK		0x0000FFFE	/* work to do on interrupt/exception return */