Use small caps for 2G/3G functions

This commit is contained in:
Denis Kenzior 2009-10-02 17:49:31 -05:00
parent 98e2228c27
commit c8150fc120
4 changed files with 7 additions and 7 deletions

View File

@ -82,7 +82,7 @@ static void at_crsm_info_cb(gboolean ok, GAtResult *result, gpointer user_data)
ofono_debug("crsm_info_cb: %02x, %02x, %i", sw1, sw2, len);
sim_parse_2G_get_response(response, len, &flen, &rlen, &str, access);
sim_parse_2g_get_response(response, len, &flen, &rlen, &str, access);
cb(&error, flen, str, rlen, access, cbd->data);
}

View File

@ -574,7 +574,7 @@ struct sim_ef_info *sim_ef_db_lookup(unsigned short id)
return result;
}
gboolean sim_parse_3G_get_response(unsigned char *data, int len,
gboolean sim_parse_3g_get_response(unsigned char *data, int len,
int *file_len, int *record_len,
int *structure, unsigned char *access,
unsigned short *efid)
@ -683,7 +683,7 @@ gboolean sim_parse_3G_get_response(unsigned char *data, int len,
return TRUE;
}
gboolean sim_parse_2G_get_response(unsigned char *response, int len,
gboolean sim_parse_2g_get_response(unsigned char *response, int len,
int *file_len, int *record_len,
int *structure, unsigned char *access)
{

View File

@ -107,11 +107,11 @@ void sim_adn_build(unsigned char *data, int length,
struct sim_ef_info *sim_ef_db_lookup(unsigned short efid);
gboolean sim_parse_3G_get_response(unsigned char *data, int len,
gboolean sim_parse_3g_get_response(unsigned char *data, int len,
int *file_len, int *record_len,
int *structure, unsigned char *access,
unsigned short *efid);
gboolean sim_parse_2G_get_response(unsigned char *response, int len,
gboolean sim_parse_2g_get_response(unsigned char *response, int len,
int *file_len, int *record_len,
int *structure, unsigned char *access);

View File

@ -108,7 +108,7 @@ static void test_3g_status_data()
response = decode_hex(binary_ef, -1, &len, 0);
sim_parse_3G_get_response(response, len, &flen, &rlen, &str,
sim_parse_3g_get_response(response, len, &flen, &rlen, &str,
access, &efid);
g_assert(flen == 10);
@ -123,7 +123,7 @@ static void test_3g_status_data()
response = decode_hex(record_ef, -1, &len, 0);
sim_parse_3G_get_response(response, len, &flen, &rlen, &str,
sim_parse_3g_get_response(response, len, &flen, &rlen, &str,
access, &efid);
g_assert(flen == 0x80);