yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame^] | 1 | /* |
2 | * cacheflush.c - Cache control functions for Blackfin. | ||||
3 | * | ||||
4 | * Copyright (C) 2010 Analog Devices Inc. | ||||
5 | * | ||||
6 | * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. | ||||
7 | */ | ||||
8 | |||||
9 | #include <unistd.h> | ||||
10 | #include <errno.h> | ||||
11 | #include <sys/syscall.h> | ||||
12 | #include <sys/cachectl.h> | ||||
13 | |||||
14 | _syscall3 (int, cacheflush, void *, start, const int, nbytes, const int, flags) |