xref: /openbmc/qemu/stubs/ram-block.c (revision 9277d81f5c2c6f4d0b5e47c8476eb7ee7e5c0beb)
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