aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-virtual
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-03 02:05:24 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-03 02:08:14 +0700
commitc14f1641c6739a3b1739ae088280c47c7bd5e82d (patch)
tree9b254a3f8de50d972ca6fea2e730d024bb3bec06 /src/osmo-bts-virtual
parent3d5cf0b3417dfd0f873c5dc54babd97982eea8e5 (diff)
Constify the 'trx' argument of trx_get_hlayer1() everywhere
Diffstat (limited to 'src/osmo-bts-virtual')
-rw-r--r--src/osmo-bts-virtual/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-virtual/main.c b/src/osmo-bts-virtual/main.c
index fb5d3573..e5b72062 100644
--- a/src/osmo-bts-virtual/main.c
+++ b/src/osmo-bts-virtual/main.c
@@ -50,7 +50,7 @@
#include "l1_if.h"
/* dummy, since no direct dsp support */
-uint32_t trx_get_hlayer1(struct gsm_bts_trx *trx)
+uint32_t trx_get_hlayer1(const struct gsm_bts_trx *trx)
{
return 0;
}