mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
d11646b5ce
Current kernel uses only a few ARC calls. Drop all unused ARC functions. Signed-off-by: Thomas Bogendoerfer <tbogendoerfer@suse.de> Signed-off-by: Paul Burton <paul.burton@mips.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: James Hogan <jhogan@kernel.org> Cc: linux-mips@vger.kernel.org Cc: linux-kernel@vger.kernel.org
26 lines
609 B
C
26 lines
609 B
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* ARC firmware interface.
|
|
*
|
|
* Copyright (C) 1994, 1995, 1996, 1999 Ralf Baechle
|
|
* Copyright (C) 1999 Silicon Graphics, Inc.
|
|
*/
|
|
|
|
#include <asm/fw/arc/types.h>
|
|
#include <asm/sgialib.h>
|
|
|
|
LONG
|
|
ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count)
|
|
{
|
|
return ARC_CALL4(read, FileID, Buffer, N, Count);
|
|
}
|
|
|
|
LONG
|
|
ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count)
|
|
{
|
|
return ARC_CALL4(write, FileID, Buffer, N, Count);
|
|
}
|