blob: b0d8535c80cc8a9834b97fa081bbec2353970bd1 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * ARC firmware interface.
7 *
8 * Copyright (C) 1994, 1995, 1996, 1999 Ralf Baechle
9 * Copyright (C) 1999 Silicon Graphics, Inc.
10 */
11
12#include <asm/fw/arc/types.h>
13#include <asm/sgialib.h>
14
15LONG
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count)
17{
18 return ARC_CALL4(read, FileID, Buffer, N, Count);
19}
20
21LONG
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000022ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count)
23{
24 return ARC_CALL4(write, FileID, Buffer, N, Count);
25}