Received: from milmhbs1.lsil.com (147.145.21.209) by coscas01.lsi.com
 (172.21.36.60) with Microsoft SMTP Server id 8.1.393.1; Sat, 5 Dec 2009
 05:11:06 -0700
Received: from mail1.lsil.com (mail1.lsil.com [147.145.40.21])	by
 milmhbs1.lsil.com (8.12.11/8.12.11) with ESMTP id nB5CB3fp020514	for
 <andy.sharp@lsi.com>; Sat, 5 Dec 2009 04:11:06 -0800
Received: from psmtp.com (na3sys009amx205.postini.com [74.125.149.45])	by
 mail1.lsil.com (8.12.11/8.12.11) with SMTP id nB5CB1pI011542	for
 <andy.sharp@lsi.com>; Sat, 5 Dec 2009 04:11:02 -0800 (PST)
Received: from source ([78.24.191.182]) by na3sys009amx205.postini.com
 ([74.125.148.14]) with SMTP;	Sat, 05 Dec 2009 12:11:03 GMT
Received: from localhost.localdomain ([127.0.0.1]:52281 "EHLO
        eddie.linux-mips.org" rhost-flags-OK-OK-OK-FAIL)        by
 eddie.linux-mips.org with ESMTP id S1491143AbZLEMKo (ORCPT
        <rfc822;andy.sharp@lsi.com>); Sat, 5 Dec 2009 13:10:44 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Sat, 05 Dec 2009 13:10:26
 +0100 (CET)
Received: from gw03.mail.saunalahti.fi ([195.197.172.111]:58566 "EHLO
        gw03.mail.saunalahti.fi" rhost-flags-OK-OK-OK-OK)        by
 eddie.linux-mips.org with ESMTP id S1491137AbZLEMKX (ORCPT
        <rfc822;linux-mips@linux-mips.org>); Sat, 5 Dec 2009 13:10:23 +0100
Received: from localhost.localdomain (a88-114-227-145.elisa-laajakaista.fi
 [88.114.227.145])        by gw03.mail.saunalahti.fi (Postfix) with ESMTP id
 6271A2166F6;        Sat,  5 Dec 2009 14:10:18 +0200 (EET)
From: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
To: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>,
	"ralf@linux-mips.org" <ralf@linux-mips.org>
CC: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Sat, 5 Dec 2009 05:09:20 -0700
Subject: [PATCH] [MIPS] Fix MIPSsim build after command-line cleanup
Thread-Topic: [PATCH] [MIPS] Fix MIPSsim build after command-line cleanup
Thread-Index: Acp1pAZJJmO63Hz+TLGJArIjjgI3cw==
Message-ID: <1260014960-16415-1-git-send-email-dmitri.vorobiev@movial.com>
References: <20091205104158.GA11800@linux-mips.org>
In-Reply-To: <20091205104158.GA11800@linux-mips.org>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Anonymous
X-MS-Exchange-Organization-AuthSource: coscas01.lsi.com
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-scanned-by: MIMEDefang 2.39
errors-to: linux-mips-bounce@linux-mips.org
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-pstn-settings: 3 (1.0000:1.0000) s cv gt3 gt2 gt1 r p m c 
x-pstn-addresses: from <dmitri.vorobiev@movial.com> [22/1] 
x-pstn-neptune: 0/0/0.00/0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

Commit `MIPSsim: Remove unused code' removed the file
arch/mips/mipssim/sim_cmdline.c but did not clean the
reference to the corresponding object file.  This patch
is to fix the build breakage resulted from the above.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
---
 arch/mips/mipssim/Makefile |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/mips/mipssim/Makefile b/arch/mips/mipssim/Makefile
index 57f43c1..41b9657 100644
--- a/arch/mips/mipssim/Makefile
+++ b/arch/mips/mipssim/Makefile
@@ -17,8 +17,7 @@
 # 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
 #
=20
-obj-y :=3D sim_platform.o sim_setup.o sim_mem.o sim_time.o sim_int.o \
-	 sim_cmdline.o
+obj-y :=3D sim_platform.o sim_setup.o sim_mem.o sim_time.o sim_int.o
=20
 obj-$(CONFIG_EARLY_PRINTK) +=3D sim_console.o
 obj-$(CONFIG_MIPS_MT_SMTC) +=3D sim_smtc.o
--=20
1.6.3.3


