Received: from mail.onstor.com (66.201.51.107) by exch1.onstor.net
 (10.0.0.225) with Microsoft SMTP Server id 8.1.311.2; Wed, 8 Apr 2009
 09:09:37 -0700
Received: from psmtp.com ([64.18.0.112]) by mail.onstor.com with Microsoft
 SMTPSVC(6.0.3790.3959);	 Wed, 8 Apr 2009 09:09:37 -0700
Received: from source ([213.58.128.207]) by exprod5mx288.postini.com
 ([64.18.4.11]) with SMTP;	Wed, 08 Apr 2009 10:09:37 MDT
Received: from localhost.localdomain ([127.0.0.1]:38596 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S20024139AbZDHN7Y
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Wed, 8 Apr 2009 14:59:24 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 08 Apr 2009 14:59:07
 +0100 (BST)
Received: from mba.ocn.ne.jp ([122.1.235.107]:28128 "HELO smtp.mba.ocn.ne.jp")
	by ftp.linux-mips.org with SMTP id S20035307AbZDHN65 (ORCPT
	<rfc822;linux-mips@linux-mips.org>); Wed, 8 Apr 2009 14:58:57 +0100
Received: from localhost.localdomain (p7136-ipad212funabasi.chiba.ocn.ne.jp
 [58.91.171.136])	by smtp.mba.ocn.ne.jp (Postfix) with ESMTP	id 3FB90AA2F;
 Wed,  8 Apr 2009 22:58:51 +0900 (JST)
From: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
To: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>
CC: "ralf@linux-mips.org" <ralf@linux-mips.org>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Wed, 8 Apr 2009 06:59:00 -0700
Subject: [PATCH] Do not include seccomp.h from compat.h
Thread-Topic: [PATCH] Do not include seccomp.h from compat.h
Thread-Index: Acm4ZGp5btcAlQosQyeVhqv2LSG6rQ==
Message-ID: <1239199140-32756-1-git-send-email-anemo@mba.ocn.ne.jp>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Internal
X-MS-Exchange-Organization-AuthMechanism: 0b
X-MS-Exchange-Organization-AuthSource: exch1.onstor.net
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-originalarrivaltime: 08 Apr 2009 16:09:37.0577 (UTC)
 FILETIME=[6A42C190:01C9B864]
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-levels: (S:43.83175/99.90000 CV:99.9000 FC:95.5390 LC:95.5390
 R:95.9108 P:95.9108 M:97.0282 C:98.6951 )
x-pstn-neptune: 0/0/0.00/0
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: KuxaBkfJNxq9hbi5T0C5/A==
x-list: linux-mips
x-archive-position: 22275
x-ecartis-version: Ecartis v1.0.0
x-original-sender: anemo@mba.ocn.ne.jp
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

The compat.h does not need seccomp.h since TIF_32BIT was moved to
thread_info.h

This fixes a build error of 64-bit kernel without CONFIG_SECCOMP.

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
---
 arch/mips/include/asm/compat.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/arch/mips/include/asm/compat.h b/arch/mips/include/asm/compat.=
h
index 6c5b409..f58aed3 100644
--- a/arch/mips/include/asm/compat.h
+++ b/arch/mips/include/asm/compat.h
@@ -3,7 +3,6 @@
 /*
  * Architecture specific compatibility types
  */
-#include <linux/seccomp.h>
 #include <linux/thread_info.h>
 #include <linux/types.h>
 #include <asm/page.h>
--=20
1.5.6.3


