Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750806AbZKYFE2 (ORCPT ); Wed, 25 Nov 2009 00:04:28 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750719AbZKYFE1 (ORCPT ); Wed, 25 Nov 2009 00:04:27 -0500 Received: from cdptpa-omtalb.mail.rr.com ([75.180.132.121]:33688 "EHLO cdptpa-omtalb.mail.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750714AbZKYFE0 (ORCPT ); Wed, 25 Nov 2009 00:04:26 -0500 Date: Wed, 25 Nov 2009 00:04:24 -0500 Message-ID: <87d437tctj.wl%ysato@users.sourceforge.jp> From: Yoshinori Sato To: Mathieu Desnoyers Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH] h8300 thread flags cleanup In-Reply-To: <20091123232032.GB9551@Krystal> References: <20091123232032.GB9551@Krystal> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.7 Emacs/22.3 (x86_64-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2115 Lines: 53 At Mon, 23 Nov 2009 18:20:32 -0500, Mathieu Desnoyers wrote: > > 2.6.32-rc introduces incoherent coding style in thread_info.h. Make sure > the same style is used everywhere. Using style found in x86. > > Signed-off-by: Mathieu Desnoyers > CC: Yoshinori Sato Merged. Thanks. > --- > arch/h8300/include/asm/thread_info.h | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > Index: linux-2.6-lttng/arch/h8300/include/asm/thread_info.h > =================================================================== > --- linux-2.6-lttng.orig/arch/h8300/include/asm/thread_info.h 2009-11-22 20:42:35.000000000 -0500 > +++ linux-2.6-lttng/arch/h8300/include/asm/thread_info.h 2009-11-22 20:42:53.000000000 -0500 > @@ -93,13 +93,13 @@ static inline struct thread_info *curren > #define TIF_FREEZE 16 /* is freezing for suspend */ > > /* as above, but as bit values */ > -#define _TIF_SYSCALL_TRACE (1< -#define _TIF_SIGPENDING (1< -#define _TIF_NEED_RESCHED (1< -#define _TIF_POLLING_NRFLAG (1< -#define _TIF_RESTORE_SIGMASK (1< +#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) > +#define _TIF_SIGPENDING (1 << TIF_SIGPENDING) > +#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) > +#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) > +#define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) > #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) > -#define _TIF_FREEZE (1< +#define _TIF_FREEZE (1 << TIF_FREEZE) > > #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ > > > -- > Mathieu Desnoyers > OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68 -- Yoshinori Sato -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/