diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-24 11:19:49 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-01-16 17:52:35 +0100 |
commit | 2f7b92a03f1e3813fc046d757138da519f4218d3 (patch) | |
tree | 11a0a98df19801bc6bb992d6d416bd9dbd96f474 /stubs | |
parent | 671ab4368a27401cff34cb74627332207f40cd54 (diff) | |
download | qemu-2f7b92a03f1e3813fc046d757138da519f4218d3.zip qemu-2f7b92a03f1e3813fc046d757138da519f4218d3.tar.gz qemu-2f7b92a03f1e3813fc046d757138da519f4218d3.tar.bz2 |
hw: move reset handlers from vl.c to hw/core
They are small, it is not worth stubbing them. Just include them
in user-mode emulators and unit tests as well.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/Makefile.objs | 1 | ||||
-rw-r--r-- | stubs/reset.c | 14 |
2 files changed, 0 insertions, 15 deletions
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index 5b3e7c6..c89a9da 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -26,7 +26,6 @@ stub-obj-y += notify-event.o stub-obj-y += qtest.o stub-obj-y += replay.o stub-obj-y += replay-user.o -stub-obj-y += reset.o stub-obj-y += runstate-check.o stub-obj-y += set-fd-handler.o stub-obj-y += slirp.o diff --git a/stubs/reset.c b/stubs/reset.c deleted file mode 100644 index 5d47711..0000000 --- a/stubs/reset.c +++ /dev/null @@ -1,14 +0,0 @@ -#include "qemu/osdep.h" -#include "hw/hw.h" - -/* Stub functions for binaries that never call qemu_devices_reset(), - * and don't need to keep track of the reset handler list. - */ - -void qemu_register_reset(QEMUResetHandler *func, void *opaque) -{ -} - -void qemu_unregister_reset(QEMUResetHandler *func, void *opaque) -{ -} |