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