mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
16 lines
294 B
C
16 lines
294 B
C
|
/*
|
||
|
* 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)
|
||
|
{
|
||
|
}
|