]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc5xxx/cache.c
mpc5xxx: Add stub implementation of cache functions
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc5xxx / cache.c
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
9 void invalidate_dcache_range(unsigned long start, unsigned long stop)
10 {
11 }
12
13 void flush_dcache_range(unsigned long start, unsigned long stop)
14 {
15 }