aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/scheduler.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-01-09 18:05:13 +0100
committerHarald Welte <laforge@gnumonks.org>2016-01-16 17:48:40 +0100
commit519a639cf37b6f4cb1c4c9a80a84f7c4dcb4ef4b (patch)
tree4317b5a2c19fa419984af51c8a5f6e077f4fbf44 /src/osmo-bts-trx/scheduler.c
parent6323d2e61707ac96d1f4c5c0218c0efe6c203697 (diff)
TRX: make trx_chan_desc static, it is not used externally
Diffstat (limited to 'src/osmo-bts-trx/scheduler.c')
-rw-r--r--src/osmo-bts-trx/scheduler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-trx/scheduler.c b/src/osmo-bts-trx/scheduler.c
index 5be5f387..4d9ffbb8 100644
--- a/src/osmo-bts-trx/scheduler.c
+++ b/src/osmo-bts-trx/scheduler.c
@@ -176,7 +176,7 @@ struct trx_chan_desc {
/*! \breif is this channel automatically active at start? */
int auto_active;
};
-const struct trx_chan_desc trx_chan_desc[_TRX_CHAN_MAX] = {
+static const struct trx_chan_desc trx_chan_desc[_TRX_CHAN_MAX] = {
{ 0, TRXC_IDLE, 0, 0, "IDLE", NULL, tx_idle_fn, NULL, 1 },
{ 0, TRXC_FCCH, 0, 0, "FCCH", NULL, tx_fcch_fn, NULL, 1 },
{ 0, TRXC_SCH, 0, 0, "SCH", NULL, tx_sch_fn, NULL, 1 },