From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Thu, 05 Jan 2006 17:34:47 +0000 (GMT) Received: from mailout.stusta.mhn.de ([141.84.69.5]:27410 "HELO mailout.stusta.mhn.de") by ftp.linux-mips.org with SMTP id S8133560AbWAERe0 (ORCPT ); Thu, 5 Jan 2006 17:34:26 +0000 Received: (qmail 10042 invoked from network); 5 Jan 2006 17:36:57 -0000 Received: from r063144.stusta.swh.mhn.de (10.150.63.144) by mailout.stusta.mhn.de with SMTP; 5 Jan 2006 17:36:57 -0000 Received: by r063144.stusta.swh.mhn.de (Postfix, from userid 1000) id 315FE197670; Thu, 5 Jan 2006 18:36:58 +0100 (CET) Date: Thu, 5 Jan 2006 18:36:57 +0100 From: Adrian Bunk To: Andrew Morton Cc: Ralf Baechle , Domen Puncer , linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, davem@davemloft.net Subject: [2.6 patch] Remove arch/mips/arc/salone.c Message-ID: <20060105173657.GA12313@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 9781 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: bunk@stusta.de Precedence: bulk X-list: linux-mips From: Domen Puncer ArcLoad(), ArcInvoke(), ArcExecute() aren't used. Signed-off-by: Domen Puncer Signed-off-by: Alexey Dobriyan Signed-off-by: Adrian Bunk --- This patch was sent by Alexey Dobriyan on: - 8 Nov 2005 arch/mips/arc/Makefile | 2 +- arch/mips/arc/salone.c | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) --- linux-kj.orig/arch/mips/arc/Makefile 2005-11-08 20:46:24.000000000 +0300 +++ linux-kj/arch/mips/arc/Makefile 2005-11-08 20:47:36.000000000 +0300 @@ -3,7 +3,7 @@ # lib-y += cmdline.o env.o file.o identify.o init.o \ - misc.o salone.o time.o tree.o + misc.o time.o tree.o lib-$(CONFIG_ARC_MEMORY) += memory.o lib-$(CONFIG_ARC_CONSOLE) += arc_con.o Index: linux-kj/arch/mips/arc/salone.c =================================================================== --- linux-kj.orig/arch/mips/arc/salone.c 2005-11-08 20:46:24.000000000 +0300 +++ /dev/null 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -/* - * Routines to load into memory and execute stand-along program images using - * ARCS PROM firmware. - * - * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) - */ -#include -#include - -LONG __init ArcLoad(CHAR *Path, ULONG TopAddr, ULONG *ExecAddr, ULONG *LowAddr) -{ - return ARC_CALL4(load, Path, TopAddr, ExecAddr, LowAddr); -} - -LONG __init ArcInvoke(ULONG ExecAddr, ULONG StackAddr, ULONG Argc, CHAR *Argv[], - CHAR *Envp[]) -{ - return ARC_CALL5(invoke, ExecAddr, StackAddr, Argc, Argv, Envp); -} - -LONG __init ArcExecute(CHAR *Path, LONG Argc, CHAR *Argv[], CHAR *Envp[]) -{ - return ARC_CALL4(exec, Path, Argc, Argv, Envp); -}