fixed error of output information in bc26_init()

There are some error of output information in function bc26_init().
This commit is contained in:
David Lin 2020-02-11 21:53:06 +08:00 committed by GitHub
parent 3a4a3672d4
commit aace41fad5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -201,7 +201,7 @@ static int bc26_init(void)
}
if (bc26_open_cfun() != 0) {
printf("bc26 psm lock FAILED\n");
printf("bc26 open cfun FAILED\n");
return -1;
}
@ -211,17 +211,17 @@ static int bc26_init(void)
}
if (bc26_open_err_code() != 0) {
printf("bc26_open_err_code FAILED\n");
printf("bc26 open err code FAILED\n");
return -1;
}
if (bc26_check_sim() != 0) {
printf("bc26_open_err_code FAILED\n");
printf("bc26 check sim FAILED\n");
return -1;
}
if (bc26_get_net() != 0) {
printf("bc26_open_err_code FAILED\n");
printf("bc26 get net FAILED\n");
return -1;
}