From 5ca42255c5acebae7fe05d155d09673e10d0fb6a Mon Sep 17 00:00:00 2001 From: "Gustavo F. Padovan" Date: Mon, 6 Dec 2010 18:12:30 -0200 Subject: atmodem: use macros for CLIP validity --- drivers/atmodem/voicecall.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'drivers') diff --git a/drivers/atmodem/voicecall.c b/drivers/atmodem/voicecall.c index c04bd69e..a2ee49d8 100644 --- a/drivers/atmodem/voicecall.c +++ b/drivers/atmodem/voicecall.c @@ -39,6 +39,8 @@ #include "gatchat.h" #include "gatresult.h" +#include "common.h" + #include "atmodem.h" /* Amount of ms we wait between CLCC calls */ @@ -710,9 +712,9 @@ static void clip_notify(GAtResult *result, gpointer user_data) return; if (strlen(num) > 0) - validity = 0; + validity = CLIP_VALIDITY_VALID; else - validity = 2; + validity = CLIP_VALIDITY_NOT_AVAILABLE; /* Skip subaddr, satype and alpha */ g_at_result_iter_skip_next(&iter); -- cgit v1.2.3