mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
sandbox: Add a dummy invalidate_dcache_range() function
This adds invalidate_dcache_range() so that some drivers can build without error on sandbox. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
fceadc1459
commit
0d1414bd97
1 changed files with 4 additions and 0 deletions
|
@ -100,6 +100,10 @@ void flush_dcache_range(unsigned long start, unsigned long stop)
|
|||
{
|
||||
}
|
||||
|
||||
void invalidate_dcache_range(unsigned long start, unsigned long stop)
|
||||
{
|
||||
}
|
||||
|
||||
int sandbox_read_fdt_from_file(void)
|
||||
{
|
||||
struct sandbox_state *state = state_get_current();
|
||||
|
|
Loading…
Reference in a new issue