futility: updater: quirks: Fix firmware names for Veyron family

The firmware name for Veyron devices are Google_Veyron_XXX and we have
to correct the names in quirks database.

BUG=chromium:910085
TEST=make futil; tests/futility/run_test_scripts.sh $(pwd)/build/futility
BRANCH=None

Change-Id: I3bf3bbb32fe90ebf370c1bc51c54d0280ddb7e98
Signed-off-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1354147
Reviewed-by: Youcheng Syu <youcheng@chromium.org>
(cherry picked from commit 979f8b906cfda7af57a4a526d352216eeafe1746)
Reviewed-on: https://chromium-review.googlesource.com/c/1356692
diff --git a/futility/updater_quirks.c b/futility/updater_quirks.c
index b3fbe63..6d51072 100644
--- a/futility/updater_quirks.c
+++ b/futility/updater_quirks.c
@@ -46,9 +46,9 @@
         { .match = "Google_Enguarde.", .quirks = "allow_empty_wltag" },
         { .match = "Google_Expresso.", .quirks = "allow_empty_wltag" },
         { .match = "Google_Hana.", .quirks = "allow_empty_wltag" },
-        { .match = "Google_Jaq.", .quirks = "allow_empty_wltag" },
-        { .match = "Google_Jerry.", .quirks = "allow_empty_wltag" },
-        { .match = "Google_Mighty.", .quirks = "allow_empty_wltag" },
+        { .match = "Google_Veyron_Jaq.", .quirks = "allow_empty_wltag" },
+        { .match = "Google_Veyron_Jerry.", .quirks = "allow_empty_wltag" },
+        { .match = "Google_Veyron_Mighty.", .quirks = "allow_empty_wltag" },
         { .match = "Google_Reks.", .quirks = "allow_empty_wltag" },
         { .match = "Google_Relm.", .quirks = "allow_empty_wltag" },
         { .match = "Google_Wizpig.", .quirks = "allow_empty_wltag" },