diff --git a/plugins/fastboot/fastboot.quirk b/plugins/fastboot/fastboot.quirk index 63469d231..ecd3029a9 100644 --- a/plugins/fastboot/fastboot.quirk +++ b/plugins/fastboot/fastboot.quirk @@ -5,3 +5,4 @@ Plugin = fastboot # Quectel EG25-G modem [USB\VID_18D1&PID_D00D] FastbootBlockSize = 16384 +FastbootOperationDelay = 100 diff --git a/plugins/fastboot/fu-fastboot-device.c b/plugins/fastboot/fu-fastboot-device.c index 3ca4cfc3d..9df2e5e2e 100644 --- a/plugins/fastboot/fu-fastboot-device.c +++ b/plugins/fastboot/fu-fastboot-device.c @@ -708,12 +708,6 @@ fu_fastboot_device_set_quirk_kv(FuDevice *device, self->blocksz = tmp; return TRUE; } - if (g_strcmp0(key, "FastbootBlockSize") == 0) { - if (!fu_common_strtoull_full(value, &tmp, 0x40, 0x100000, error)) - return FALSE; - self->blocksz = tmp; - return TRUE; - } if (g_strcmp0(key, "FastbootOperationDelay") == 0) { if (!fu_common_strtoull_full(value, &tmp, 0, G_MAXSIZE, error)) return FALSE;