diff options
author | Aki Niemi <aki.niemi@nokia.com> | 2010-12-03 10:50:16 +0200 |
---|---|---|
committer | Aki Niemi <aki.niemi@nokia.com> | 2010-12-22 17:13:48 +0200 |
commit | 46d52b5a9078b1a337f21f357aeb9a608c097f53 (patch) | |
tree | 2417ec84bf942011c765c0cdcfc105df40023250 | |
parent | 1bffb5c909d297193815ccdc894c254905b43f33 (diff) | |
download | ofono-46d52b5a9078b1a337f21f357aeb9a608c097f53.tar.bz2 |
isimodem: Add debugging for PN_WRAN id
-rw-r--r-- | drivers/isimodem/debug.c | 1 | ||||
-rw-r--r-- | drivers/isimodem/gpds.h | 1 | ||||
-rw-r--r-- | drivers/isimodem/radio-settings.c | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isimodem/debug.c b/drivers/isimodem/debug.c index 5369f997..17efae95 100644 --- a/drivers/isimodem/debug.c +++ b/drivers/isimodem/debug.c @@ -51,6 +51,7 @@ const char *pn_resource_name(int value) _(PN_MTC); _(PN_GSS); _(PN_GPDS); + _(PN_WRAN); } return "PN_<UNKNOWN>"; } diff --git a/drivers/isimodem/gpds.h b/drivers/isimodem/gpds.h index abe458a9..e6a4b573 100644 --- a/drivers/isimodem/gpds.h +++ b/drivers/isimodem/gpds.h @@ -39,6 +39,7 @@ extern "C" { #define PN_GPDS 0x31 #define PN_PEP_TYPE_GPRS 0x04 +#define PN_WRAN 0xB4 enum gpds_message_id { GPDS_LL_CONFIGURE_REQ = 0x00, diff --git a/drivers/isimodem/radio-settings.c b/drivers/isimodem/radio-settings.c index ba04d213..dd009f69 100644 --- a/drivers/isimodem/radio-settings.c +++ b/drivers/isimodem/radio-settings.c @@ -45,8 +45,6 @@ #include "gss.h" #include "network.h" -#define PN_WRAN 0xb4 - struct radio_data { GIsiClient *gss_client; GIsiClient *gpds_client; |