compiler warning: drop double 'const' in a_iface_tx_cipher_mode()

Change-Id: I3b8baa9a259704e719ce7f12776f2d2125ebdef0
This commit is contained in:
Neels Hofmeyr 2017-12-14 03:51:34 +01:00
parent c5981b34af
commit fb21d9dde6
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ int a_iface_tx_dtap(struct msgb *msg);
/* Send Cipher mode command via A-interface */
int a_iface_tx_cipher_mode(const struct gsm_subscriber_connection *conn,
int cipher, const const uint8_t *key, int len, int include_imeisv);
int cipher, const uint8_t *key, int len, int include_imeisv);
/* Page a subscriber via A-interface */
int a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac);

View File

@ -164,7 +164,7 @@ int a_iface_tx_dtap(struct msgb *msg)
/* Send Cipher mode command via A-interface */
int a_iface_tx_cipher_mode(const struct gsm_subscriber_connection *conn,
int cipher, const const uint8_t *key, int len, int include_imeisv)
int cipher, const uint8_t *key, int len, int include_imeisv)
{
/* TODO generalize for A- and Iu interfaces, don't name after 08.08 */
struct msgb *msg_resp;