cache.c 347 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2012 Marek Vasut <marex@denx.de>
  3. *
  4. * This file contains stub implementation of
  5. * invalidate_dcache_range()
  6. * flush_dcache_range()
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. void invalidate_dcache_range(unsigned long start, unsigned long stop)
  11. {
  12. }
  13. void flush_dcache_range(unsigned long start, unsigned long stop)
  14. {
  15. }