From 2e9a4242c539629ceae4a6cf722caebeafa15f7a Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Thu, 7 Feb 2019 21:14:31 -0600 Subject: [PATCH] trivial: dell-dock: bump passive requirement to EC25+ Turns out we can't have nice things that work properly just yet. --- plugins/dell-dock/fu-dell-dock-i2c-ec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/dell-dock/fu-dell-dock-i2c-ec.c b/plugins/dell-dock/fu-dell-dock-i2c-ec.c index d61994e98..a758702e0 100644 --- a/plugins/dell-dock/fu-dell-dock-i2c-ec.c +++ b/plugins/dell-dock/fu-dell-dock-i2c-ec.c @@ -431,10 +431,10 @@ fu_dell_dock_ec_get_dock_info (FuDevice *device, fu_device_set_version_lowest (device, self->ec_minimum_version); - /* TODO: Drop if minimum EC is set to 23+ + /* TODO: Drop if minimum EC is set to 25+ * Determine if the passive flow should be used when flashing */ - if (fu_common_vercmp (self->ec_version, "00.00.00.23") >= 0) { + if (fu_common_vercmp (self->ec_version, "00.00.00.25") >= 0) { g_debug ("using passive flow"); self->passive_flow = PASSIVE_REBOOT_MASK; fu_device_set_custom_flags (device, "skip-restart");