/*1* This file is subject to the terms and conditions of the GNU General Public2* License. See the file "COPYING" in the main directory of this archive3* for more details.4*5* ARC firmware interface.6*7* Copyright (C) 1994, 1995, 1996, 1999 Ralf Baechle8* Copyright (C) 1999 Silicon Graphics, Inc.9*/1011#include <asm/fw/arc/types.h>12#include <asm/sgialib.h>1314LONG15ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count)16{17return ARC_CALL4(read, FileID, Buffer, N, Count);18}1920LONG21ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count)22{23return ARC_CALL4(write, FileID, Buffer, N, Count);24}252627