blob: a4b9f4ae955ad19f39a059bc6a7a7016839432df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* cacheflush.c - Cache control functions for Blackfin.
*
* Copyright (C) 2010 Analog Devices Inc.
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#ifdef __NR_cacheflush
# include <sys/cachectl.h>
_syscall3 (int, cacheflush, void *, addr, const int, nbytes, const int, flags)
#endif
|