[gsm48] Make method name consistent...

We use rx_rr to indicate that we have received a radio resource
message but one method was using rr_rx. Fix that.
This commit is contained in:
Holger Hans Peter Freyther 2009-10-23 13:48:54 +02:00
parent 0e7b0732f6
commit ca0fcbe157
1 changed files with 2 additions and 2 deletions

View File

@ -1456,7 +1456,7 @@ static int gsm0408_rcv_mm(struct msgb *msg)
}
/* Receive a PAGING RESPONSE message from the MS */
static int gsm48_rr_rx_pag_resp(struct msgb *msg)
static int gsm48_rx_rr_pag_resp(struct msgb *msg)
{
struct gsm_bts *bts = msg->lchan->ts->trx->bts;
struct gsm48_hdr *gh = msgb_l3(msg);
@ -1611,7 +1611,7 @@ static int gsm0408_rcv_rr(struct msgb *msg)
DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
break;
case GSM48_MT_RR_PAG_RESP:
rc = gsm48_rr_rx_pag_resp(msg);
rc = gsm48_rx_rr_pag_resp(msg);
break;
case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");