diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-01-06 18:19:12 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-01-07 12:08:39 +0100 |
commit | dccdaa1f756fedee2f1dac3650e19f29572f76c4 (patch) | |
tree | f9eb2bdcf57462e67f97cb0869318e2b89ed936a /hw/timer | |
parent | a88c40f02ace88f09b2a85a64831b277b2ebc88c (diff) | |
download | qemu-dccdaa1f756fedee2f1dac3650e19f29572f76c4.zip |
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é <philmd@redhat.com>
Message-Id: <20200106171912.16523-1-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/timer')
-rw-r--r-- | hw/timer/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
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 |