fw_lab_triage_helper: look for all servo errors

Stop ignoring the signature of a bug that has been fixed.

BUG=none
TEST=ran against the gsc qualification environment

Change-Id: I556103cfdfd3f075de589d7424fc8cdb2a5e9ff8
Reviewed-on: https://chromium-review.googlesource.com/1427160
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: Kevin Shelton <kmshelton@chromium.org>
Reviewed-by: Kevin Shelton <kmshelton@chromium.org>
diff --git a/provingground/firmware/fw_lab_triage_helper.sh b/provingground/firmware/fw_lab_triage_helper.sh
index c27ccdf..5849167 100755
--- a/provingground/firmware/fw_lab_triage_helper.sh
+++ b/provingground/firmware/fw_lab_triage_helper.sh
@@ -55,13 +55,11 @@
 done
 
 echo -e "\n\nChecking for lines with ERROR in the most recent servod log (the \
-  last 4 will be on the labstation, only the most recent one is checked here). \
-  Errors that appear to match the signature of the KI from b/110796670 are \
-  ignored (it is safe to ignore)."
-for STATION in $LABSTATIONS;
+  last 4 will be on the labstation, only the most recent one is checked here)."
+for STATION in $GSC_LABSTATIONS;
     do echo -e "\nchecking $STATION"
-    ssh -o StrictHostKeyChecking=no root@$STATION "grep ERROR \
-      /var/log/servod_990*.log | grep -v 8001";
+    ssh -o StrictHostKeyChecking=no root@$STATION \
+      "grep ERROR /var/log/servod_990*.log";
 done