summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-05-20 00:08:22 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-21 19:47:34 +0200
commita2f615e522907f45398973d31225f9c5d379914d (patch)
tree3ff931ba98afc9ebc7c24e7e7b8cd6e5f8e06eb1 /src/host/layer23/include
parent5bbea93772d3e490f0419aa22f33edac96af81c7 (diff)
remove 'osmocom_ms' from struct lapdm_enetity
and replace it with more general l1_ctx nad l3_ctx.
Diffstat (limited to 'src/host/layer23/include')
-rw-r--r--src/host/layer23/include/osmocom/bb/common/lapdm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/host/layer23/include/osmocom/bb/common/lapdm.h b/src/host/layer23/include/osmocom/bb/common/lapdm.h
index b502ffd8..b610564c 100644
--- a/src/host/layer23/include/osmocom/bb/common/lapdm.h
+++ b/src/host/layer23/include/osmocom/bb/common/lapdm.h
@@ -66,7 +66,9 @@ struct lapdm_entity {
struct lapdm_datalink datalink[_NR_DL_SAPI];
int last_tx_dequeue; /* last entity that was dequeued */
int tx_pending; /* currently a pending frame not confirmed by L1 */
- struct osmocom_ms *ms;
+
+ void *l1_ctx; /* context for layer1 instance */
+ void *l3_ctx; /* context for layer3 instance */
};
const char *get_rsl_name(int value);