Contributors: 3
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Ralf Baechle |
37 |
52.11% |
1 |
25.00% |
Linus Torvalds (pre-git) |
33 |
46.48% |
2 |
50.00% |
Aurelien Jarno |
1 |
1.41% |
1 |
25.00% |
Total |
71 |
|
4 |
|
/*
* 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);
}