cacheflush.c 350 B

123456789101112131415
  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. #include <sys/syscall.h>
  9. #ifdef __NR_cacheflush
  10. # include <sys/cachectl.h>
  11. _syscall3 (int, cacheflush, void *, addr, const int, nbytes, const int, flags)
  12. #endif