summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/logging.h
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-01-16 09:49:25 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-01-17 19:38:14 +0700
commit65d74d9864ceee752678ee22fd38d07067746b93 (patch)
treeafb65ecf80c27f2663e0a419b0fdc9f1bf04c7f1 /src/host/trxcon/logging.h
parent030a6154a69be9353e68fc23cb1be2fff7673b70 (diff)
trxcon/trxcon.c: do not expose tall_trx_ctx
Both l1ctl_link_init() and trx_if_open() do accept 'tall_ctx' now, so there is no need to expose the root context anymore. For logging initialization, we can just pass a pointer. Change-Id: I7a2231eb880a995d3296b94481a7799e6ff07489
Diffstat (limited to 'src/host/trxcon/logging.h')
-rw-r--r--src/host/trxcon/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/trxcon/logging.h b/src/host/trxcon/logging.h
index 0206362a..152c3467 100644
--- a/src/host/trxcon/logging.h
+++ b/src/host/trxcon/logging.h
@@ -14,4 +14,4 @@ enum {
DSCHD,
};
-int trx_log_init(const char *category_mask);
+int trx_log_init(void *tall_ctx, const char *category_mask);