mirror of https://github.com/xemu-project/xemu.git
hw/core: Restrict reset handlers API to system-mode
The user-mode code does not use this API, restrict it to the system-mode. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20200118140619.26333-6-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
553ea760bc
commit
62d8e706ec
|
@ -1,6 +1,7 @@
|
|||
# core qdev-related obj files, also used by *-user:
|
||||
common-obj-y += qdev.o qdev-properties.o
|
||||
common-obj-y += bus.o reset.o
|
||||
common-obj-y += bus.o
|
||||
common-obj-$(CONFIG_SOFTMMU) += reset.o
|
||||
common-obj-$(CONFIG_SOFTMMU) += qdev-fw.o
|
||||
common-obj-$(CONFIG_SOFTMMU) += fw-path-provider.o
|
||||
# irq.o needed for qdev GPIO handling:
|
||||
|
|
Loading…
Reference in New Issue