cache.c 294 B

123456789101112131415
  1. /*
  2. * This file contains stub implementation of
  3. * invalidate_dcache_range()
  4. * flush_dcache_range()
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. void invalidate_dcache_range(unsigned long start, unsigned long stop)
  9. {
  10. }
  11. void flush_dcache_range(unsigned long start, unsigned long stop)
  12. {
  13. }