From aace41fad5480449ef072e108a7ee244380f91d1 Mon Sep 17 00:00:00 2001 From: David Lin Date: Tue, 11 Feb 2020 21:53:06 +0800 Subject: [PATCH] fixed error of output information in bc26_init() There are some error of output information in function bc26_init(). --- devices/bc26/bc26.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/devices/bc26/bc26.c b/devices/bc26/bc26.c index b49d2aa4..3fafd76d 100644 --- a/devices/bc26/bc26.c +++ b/devices/bc26/bc26.c @@ -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; }