From: Philippe Mathieu-Daudé Date: Mon, 6 Jan 2020 17:19:12 +0000 (+0100) Subject: hw/timer/Kconfig: Intel 8254 PIT depends of ISA bus X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dccdaa1f756fedee2f1dac3650e19f29572f76c4;p=qemu.git hw/timer/Kconfig: Intel 8254 PIT depends of ISA bus Since i8254_common.c calls isa_register_ioport() from "hw/isa/isa.h" we can not select it when ISA_BUS is disabled. Add a 'depends on' clause. Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20200106171912.16523-1-philmd@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/hw/timer/Kconfig b/hw/timer/Kconfig index a990f9fe35..59b3f44d69 100644 --- a/hw/timer/Kconfig +++ b/hw/timer/Kconfig @@ -15,6 +15,7 @@ config HPET config I8254 bool + depends on ISA_BUS config ALTERA_TIMER bool