Fix the compile the timer got renamed

This commit is contained in:
Holger Freyther 2008-12-31 18:50:58 +00:00
parent c6ea9dbeba
commit 1bc7de50be
1 changed files with 2 additions and 2 deletions

View File

@ -338,7 +338,7 @@ static int mm_rx_id_resp(struct msgb *msg)
if (authorize_subscriber(lchan->subscr)) {
db_subscriber_alloc_tmsi(lchan->subscr);
tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
del_timer(&lchan->timer);
del_timer(&lchan->updating_timer);
return gsm0408_loc_upd_acc(msg->lchan, tmsi);
} else {
schedule_reject(lchan);
@ -444,7 +444,7 @@ static int mm_rx_loc_upd_req(struct msgb *msg)
tmsi = strtoul(subscr->tmsi, NULL, 10);
del_timer(&lchan->timer);
del_timer(&lchan->updating_timer);
return gsm0408_loc_upd_acc(lchan, tmsi);
}