summaryrefslogtreecommitdiffstats
path: root/plugins/nokia.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/nokia.c')
-rw-r--r--plugins/nokia.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/nokia.c b/plugins/nokia.c
index bb8e2f38..6f857943 100644
--- a/plugins/nokia.c
+++ b/plugins/nokia.c
@@ -62,7 +62,7 @@ static int nokia_probe(struct ofono_modem *modem)
DBG("%p", modem);
data = g_try_new0(struct nokia_data, 1);
- if (!data)
+ if (data == NULL)
return -ENOMEM;
ofono_modem_set_data(modem, data);
@@ -106,7 +106,7 @@ static GAtChat *open_device(struct ofono_modem *modem,
DBG("%s %s", key, device);
channel = g_at_tty_open(device, NULL);
- if (!channel)
+ if (channel == NULL)
return NULL;
syntax = g_at_syntax_new_gsm_permissive();
@@ -114,7 +114,7 @@ static GAtChat *open_device(struct ofono_modem *modem,
g_at_syntax_unref(syntax);
g_io_channel_unref(channel);
- if (!chat)
+ if (chat == NULL)
return NULL;
if (getenv("OFONO_AT_DEBUG"))
@@ -137,7 +137,7 @@ static void nokia_disconnect(gpointer user_data)
data->modem = NULL;
data->modem = open_device(modem, "Modem", "Modem: ");
- if (!data->modem)
+ if (data->modem == NULL)
return;
g_at_chat_set_disconnect_function(data->modem,
@@ -216,7 +216,7 @@ static int nokia_disable(struct ofono_modem *modem)
data->modem = NULL;
}
- if (!data->control)
+ if (data->control == NULL)
return 0;
g_at_chat_cancel_all(data->control);