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; Thu, 30 Apr 2009
 16:54:52 -0700
Received: from psmtp.com ([64.18.0.171]) by mail.onstor.com with Microsoft
 SMTPSVC(6.0.3790.3959);	 Thu, 30 Apr 2009 16:54:52 -0700
Received: from source ([213.58.128.207]) by exprod5mx251.postini.com
 ([64.18.4.10]) with SMTP;	Thu, 30 Apr 2009 18:54:51 CDT
Received: from localhost.localdomain ([127.0.0.1]:36963 "EHLO
	ftp.linux-mips.org" rhost-flags-OK-OK-OK-FAIL) by ftp.linux-mips.org	with
 ESMTP id S20026838AbZD3Xyq (ORCPT	<rfc822;andy.sharp@onstor.com>); Fri, 1 May
 2009 00:54:46 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Fri, 01 May 2009 00:54:30
 +0100 (BST)
Received: from BISCAYNE-ONE-STATION.MIT.EDU ([18.7.7.80]:60511 "EHLO
	biscayne-one-station.mit.edu" rhost-flags-OK-OK-OK-OK)	by ftp.linux-mips.org
 with ESMTP id S20026843AbZD3XyR (ORCPT	<rfc822;linux-mips@linux-mips.org>);
 Fri, 1 May 2009 00:54:17 +0100
Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103])	by
 biscayne-one-station.mit.edu (8.13.6/8.9.2) with ESMTP id n3UNrZUP016920;
	Thu, 30 Apr 2009 19:53:36 -0400 (EDT)
Received: from localhost (c-67-186-133-195.hsd1.ma.comcast.net
 [67.186.133.195])	(authenticated bits=0)        (User authenticated as
 tabbott@ATHENA.MIT.EDU)	by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id
 n3UNrY3i011410;	Thu, 30 Apr 2009 19:53:35 -0400 (EDT)
From: Tim Abbott <tabbott@MIT.EDU>
To: Sam Ravnborg <sam@ravnborg.org>
CC: Linux kernel mailing list <linux-kernel@vger.kernel.org>, Anders Kaseorg
	<andersk@mit.edu>, Waseem Daher <wdaher@mit.edu>, Denys Vlasenko
	<vda.linux@googlemail.com>, Jeff Arnold <jbarnold@mit.edu>, Ralf Baechle
	<ralf@linux-mips.org>, "linux-mips@linux-mips.org"
	<linux-mips@linux-mips.org>, Tim Abbott <tabbott@mit.edu>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Thu, 30 Apr 2009 16:53:30 -0700
Subject: [PATCH 4/4] mips: use .text, not .text.start, for lasat boot loader.
Thread-Topic: [PATCH 4/4] mips: use .text, not .text.start, for lasat boot
 loader.
Thread-Index: AcnJ7w4oJYAzPUzGTQS7JJJygrGTKg==
Message-ID: <1241135610-9012-5-git-send-email-tabbott@mit.edu>
References: <1241135610-9012-1-git-send-email-tabbott@mit.edu>
 <1241135610-9012-2-git-send-email-tabbott@mit.edu>
 <1241135610-9012-3-git-send-email-tabbott@mit.edu>
 <1241135610-9012-4-git-send-email-tabbott@mit.edu>
In-Reply-To: <1241135610-9012-4-git-send-email-tabbott@mit.edu>
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: 30 Apr 2009 23:54:52.0171 (UTC)
 FILETIME=[0DBE45B0:01C9C9EF]
x-ems-stamp: 67zURdS4TFs6FkPtcjkzbA==
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-scanned-by: MIMEDefang 2.42
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-neptune: 0/0/0.00/0
x-pstn-levels: (S:99.90000/99.90000 CV:99.9000 FC:95.5390 LC:95.5390
 R:95.9108 P:95.9108 M:97.0282 C:98.6951 )
x-list: linux-mips
x-archive-position: 22578
x-ecartis-version: Ecartis v1.0.0
x-original-sender: tabbott@MIT.EDU
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

There doesn't seem to be a reason to use a special section here, so
just use the normal .text.

Signed-off-by: Tim Abbott <tabbott@mit.edu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
---
 arch/mips/lasat/image/head.S           |    2 +-
 arch/mips/lasat/image/romscript.normal |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/lasat/image/head.S b/arch/mips/lasat/image/head.S
index efb95f2..c699363 100644
--- a/arch/mips/lasat/image/head.S
+++ b/arch/mips/lasat/image/head.S
@@ -1,7 +1,7 @@
 #include <asm/lasat/head.h>
=20
 	.text
-	.section .text.start, "ax"
+	.section .text, "ax"
 	.set noreorder
 	.set mips3
=20
diff --git a/arch/mips/lasat/image/romscript.normal b/arch/mips/lasat/image=
/romscript.normal
index 988f8ad..f470353 100644
--- a/arch/mips/lasat/image/romscript.normal
+++ b/arch/mips/lasat/image/romscript.normal
@@ -4,7 +4,7 @@ SECTIONS
 {
   .text :
   {
-    *(.text.start)
+    *(.text)
   }
=20
   /* Data in ROM */
--=20
1.6.2.1


