remove the unneeded bts_link pointer from msgb

This commit is contained in:
Harald Welte 2010-04-30 14:19:48 +02:00
parent 100224df0b
commit 3120ac3f78
2 changed files with 0 additions and 6 deletions

View File

@ -23,14 +23,9 @@
#include <stdint.h>
#include "linuxlist.h"
struct bts_link;
struct msgb {
struct llist_head list;
/* ptr to the physical E1 link to the BTS(s) */
struct gsm_bts_link *bts_link;
/* Part of which TRX logical channel we were received / transmitted */
struct gsm_bts_trx *trx;
struct gsm_lchan *lchan;

View File

@ -80,7 +80,6 @@ void msgb_reset(struct msgb *msg)
msg->head = msg->_data;
msg->tail = msg->_data;
msg->bts_link = NULL;
msg->trx = NULL;
msg->lchan = NULL;
msg->l2h = NULL;