From 3d592d7d46ee1f718c2c3db41546fe74806573db Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 20 Feb 2015 10:28:24 -0600 Subject: [PATCH] hfpmodem: Make sure to set the prefix properly ofonod[1239]: > AT+COPS=3,0\r ofonod[1239]: < \r\n+BCS:2\r\n ofonod[1239]: < \r\nOK\r\n --- drivers/hfpmodem/network-registration.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/hfpmodem/network-registration.c b/drivers/hfpmodem/network-registration.c index 272d5b44..22ce664a 100644 --- a/drivers/hfpmodem/network-registration.c +++ b/drivers/hfpmodem/network-registration.c @@ -46,6 +46,7 @@ static const char *cops_prefix[] = { "+COPS:", NULL }; static const char *cind_prefix[] = { "+CIND:", NULL }; +static const char *none_prefix[] = { NULL }; struct netreg_data { GAtChat *chat; @@ -263,7 +264,7 @@ static void hfp_current_operator(struct ofono_netreg *netreg, cbd->user = netreg; - ok = g_at_chat_send(nd->chat, "AT+COPS=3,0", NULL, + ok = g_at_chat_send(nd->chat, "AT+COPS=3,0", none_prefix, NULL, cbd, NULL); if (ok)