summaryrefslogtreecommitdiffstats
path: root/plugins/wavecom.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/wavecom.c')
-rw-r--r--plugins/wavecom.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/wavecom.c b/plugins/wavecom.c
index 73fa502c..cb55f850 100644
--- a/plugins/wavecom.c
+++ b/plugins/wavecom.c
@@ -78,12 +78,12 @@ static int wavecom_enable(struct ofono_modem *modem)
DBG("%p", modem);
device = ofono_modem_get_string(modem, "Device");
- if (!device)
+ if (device == NULL)
return -EINVAL;
options = g_hash_table_new(g_str_hash, g_str_equal);
- if (!options)
+ if (options == NULL)
return -ENOMEM;
g_hash_table_insert(options, "Baud", "115200");
@@ -95,7 +95,7 @@ static int wavecom_enable(struct ofono_modem *modem)
g_hash_table_destroy(options);
- if (!channel)
+ if (channel == NULL)
return -EIO;
/*
@@ -108,7 +108,7 @@ static int wavecom_enable(struct ofono_modem *modem)
g_at_syntax_unref(syntax);
g_io_channel_unref(channel);
- if (!chat)
+ if (chat == NULL)
return -ENOMEM;
if (getenv("OFONO_AT_DEBUG"))