blob: 707de263e90773f6743c7cbc3d4836d54f414c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* This file is subject to the terms and conditions of the LGPL V2.1
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2020 Kalray Inc.
*/
#ifndef _SYS_CACHECTL_H
#define _SYS_CACHECTL_H 1
#include <asm/cachectl.h>
__BEGIN_DECLS
extern int cachectl(void *addr, size_t len, unsigned long cache,
unsigned long flags);
__END_DECLS
#endif
|