isimodem: Add missing PN_MODEM_* debugs

This commit is contained in:
Aki Niemi 2011-04-07 10:45:55 +03:00
parent b10750976e
commit 9ddc98cd2f
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,7 @@ const char *pn_resource_name(int value)
_(PN_EPOC_INFO);
_(PN_SS);
_(PN_CALL);
_(PN_MODEM_CALL);
_(PN_SMS);
_(PN_SIM);
_(PN_SECURITY);
@ -1322,6 +1323,7 @@ static const char *res_to_name(uint8_t res, uint8_t id)
return "COMMON_MESSAGE";
switch (res) {
case PN_MODEM_NETWORK:
case PN_NETWORK:
return net_message_id_name(id);
case PN_PHONE_INFO:
@ -1330,6 +1332,7 @@ static const char *res_to_name(uint8_t res, uint8_t id)
return info_message_id_name(id);
case PN_SS:
return ss_message_id_name(id);
case PN_MODEM_CALL:
case PN_CALL:
return call_message_id_name(id);
case PN_SECURITY: