Merge "gps: add support for apq8064 v2"

This commit is contained in:
Linux Build Service Account 2012-10-02 20:27:59 -07:00 committed by Gerrit - the friendly Code Review server
commit 8dba00b498

View file

@ -216,7 +216,7 @@ static int get_target_name(void)
target_name = TARGET_NAME_APQ8064_FUSION3; target_name = TARGET_NAME_APQ8064_FUSION3;
} else { } else {
read_a_line( id, line, LINE_LEN); read_a_line( id, line, LINE_LEN);
if(!strncmp(line, "109", strlen("109"))) { if(!strncmp(line, "109", strlen("109")) || !strncmp(line, "153", strlen("153"))) {
target_name = TARGET_NAME_APQ8064_STANDALONE; target_name = TARGET_NAME_APQ8064_STANDALONE;
} }
} }