touch:fts: avoid null pointer of limit_file name

Let limit_file name to set default value in fts_identify_panel even
though fts_read_panel_extinfo fail to read information from display
driver.

Bug: 151900042
Test: touch works

Change-Id: Idb0b02b4f0df87eab6f8439016605ccbb3f3622f
Signed-off-by: davidycchen <davidycchen@google.com>
diff --git a/fts.c b/fts.c
index 46eddc7..eb95b5f 100644
--- a/fts.c
+++ b/fts.c
@@ -4208,11 +4208,9 @@
 	 * there is extinfo to read but is not yet available.
 	 */
 	ret = fts_read_panel_extinfo(info, 10);
-	if (ret < 0) {
+	if (ret < 0)
 		pr_err("%s: Failed or timed out during read of extinfo. ret=%d\n",
 		       __func__, ret);
-		goto out;
-	}
 
 	/* Identify panel given extinfo that may have been received. */
 	ret = fts_identify_panel(info);