xref: /openbmc/qemu/stubs/ram-block.c (revision 073d9f2c)
1 #include "qemu/osdep.h"
2 #include "exec/ramlist.h"
3 #include "exec/cpu-common.h"
4 
5 void ram_block_notifier_add(RAMBlockNotifier *n)
6 {
7 }
8 
9 void ram_block_notifier_remove(RAMBlockNotifier *n)
10 {
11 }
12 
13 int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
14 {
15     return 0;
16 }
17