summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-07-18 04:48:18 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-07-21 18:03:17 +0700
commit4c83590f1d59f8bfe5ab137aea43d40dcacfbbb7 (patch)
tree42e66462376d1196fd9787ad2d2c0bf5c3392325 /src/host/trxcon
parent506e9085e3cd95196f03e4534627fb0f6a8dbe01 (diff)
trxcon: cosmetic: rename l1ctl_link.[ch] to l1ctl_server.[ch]
Diffstat (limited to 'src/host/trxcon')
-rw-r--r--src/host/trxcon/include/osmocom/bb/trxcon/Makefile.am2
-rw-r--r--src/host/trxcon/include/osmocom/bb/trxcon/l1ctl.h2
-rw-r--r--src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_server.h (renamed from src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_link.h)0
-rw-r--r--src/host/trxcon/src/Makefile.am2
-rw-r--r--src/host/trxcon/src/l1ctl.c2
-rw-r--r--src/host/trxcon/src/l1ctl_server.c (renamed from src/host/trxcon/src/l1ctl_link.c)2
-rw-r--r--src/host/trxcon/src/trxcon.c2
7 files changed, 6 insertions, 6 deletions
diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/Makefile.am b/src/host/trxcon/include/osmocom/bb/trxcon/Makefile.am
index 4463a1db..3b9b2169 100644
--- a/src/host/trxcon/include/osmocom/bb/trxcon/Makefile.am
+++ b/src/host/trxcon/include/osmocom/bb/trxcon/Makefile.am
@@ -1,6 +1,6 @@
noinst_HEADERS = \
l1ctl_proto.h \
- l1ctl_link.h \
+ l1ctl_server.h \
l1ctl.h \
l1sched.h \
trx_if.h \
diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl.h b/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl.h
index 348e5c58..e15d5a20 100644
--- a/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl.h
+++ b/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl.h
@@ -3,7 +3,7 @@
#include <stdint.h>
#include <osmocom/core/msgb.h>
-#include <osmocom/bb/trxcon/l1ctl_link.h>
+#include <osmocom/bb/trxcon/l1ctl_server.h>
#include <osmocom/bb/trxcon/l1ctl_proto.h>
/* Event handlers */
diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_link.h b/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_server.h
index 84420f23..84420f23 100644
--- a/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_link.h
+++ b/src/host/trxcon/include/osmocom/bb/trxcon/l1ctl_server.h
diff --git a/src/host/trxcon/src/Makefile.am b/src/host/trxcon/src/Makefile.am
index c97265b8..cf1357fd 100644
--- a/src/host/trxcon/src/Makefile.am
+++ b/src/host/trxcon/src/Makefile.am
@@ -38,7 +38,7 @@ libl1sched_la_LIBADD = \
bin_PROGRAMS = trxcon
trxcon_SOURCES = \
- l1ctl_link.c \
+ l1ctl_server.c \
l1ctl.c \
trx_if.c \
logging.c \
diff --git a/src/host/trxcon/src/l1ctl.c b/src/host/trxcon/src/l1ctl.c
index ddcc9535..66ddac13 100644
--- a/src/host/trxcon/src/l1ctl.c
+++ b/src/host/trxcon/src/l1ctl.c
@@ -37,7 +37,7 @@
#include <osmocom/gsm/protocol/gsm_08_58.h>
#include <osmocom/bb/trxcon/logging.h>
-#include <osmocom/bb/trxcon/l1ctl_link.h>
+#include <osmocom/bb/trxcon/l1ctl_server.h>
#include <osmocom/bb/trxcon/l1ctl_proto.h>
#include <osmocom/bb/trxcon/trx_if.h>
diff --git a/src/host/trxcon/src/l1ctl_link.c b/src/host/trxcon/src/l1ctl_server.c
index 93ee6cb7..6047bedd 100644
--- a/src/host/trxcon/src/l1ctl_link.c
+++ b/src/host/trxcon/src/l1ctl_server.c
@@ -36,7 +36,7 @@
#include <osmocom/core/write_queue.h>
#include <osmocom/bb/trxcon/logging.h>
-#include <osmocom/bb/trxcon/l1ctl_link.h>
+#include <osmocom/bb/trxcon/l1ctl_server.h>
static int l1ctl_client_read_cb(struct osmo_fd *ofd)
{
diff --git a/src/host/trxcon/src/trxcon.c b/src/host/trxcon/src/trxcon.c
index b78f6614..09eae9bf 100644
--- a/src/host/trxcon/src/trxcon.c
+++ b/src/host/trxcon/src/trxcon.c
@@ -45,7 +45,7 @@
#include <osmocom/bb/trxcon/trx_if.h>
#include <osmocom/bb/trxcon/logging.h>
#include <osmocom/bb/trxcon/l1ctl.h>
-#include <osmocom/bb/trxcon/l1ctl_link.h>
+#include <osmocom/bb/trxcon/l1ctl_server.h>
#include <osmocom/bb/trxcon/l1ctl_proto.h>
#include <osmocom/bb/trxcon/l1sched.h>