From ee253ad0e98f62bd354a45e6805ecf987a1e8f43 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 9 Jul 2021 17:01:12 -0300 Subject: [PATCH] Remove TRC reset workaround from ICS9xxx --- src/device/clock_ics9xxx.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/device/clock_ics9xxx.c b/src/device/clock_ics9xxx.c index ddca7712b..df7aaf5fa 100644 --- a/src/device/clock_ics9xxx.c +++ b/src/device/clock_ics9xxx.c @@ -1280,13 +1280,11 @@ ics9xxx_get(uint8_t model) dev->name = "ICS9xxx-xx Clock Generator"; dev->local = model; + dev->flags = DEVICE_ISA; #ifdef ENABLE_ICS9xxx_DETECT - if (model == ICS9xxx_xx) { - dev->flags = DEVICE_PCI; + if (model == ICS9xxx_xx) dev->reset = ics9xxx_detect_reset; - } else #endif - dev->flags = DEVICE_ISA; dev->init = ics9xxx_init; dev->close = ics9xxx_close;