blob: d33353d831f5f9e68697298dd9a549d1e45d4c9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* cacheflush syscall for ARC
*
* Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
*
* Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sys/cachectl.h>
_syscall3(int, cacheflush, void *, addr, int, nbytes, int, op)
|