osmith has submitted this change. ( https://gerrit.osmocom.org/c/dahdi-tools/+/41174?usp=email )
Change subject: xpp/echo_loader: make get_ver static
......................................................................
xpp/echo_loader: make get_ver static
Fix the following errors seen with CFLAGS=-g in the master-dahdi-tools
job in jenkins:
/usr/bin/ld: ./.libs/libecholoader.a(libecholoader_la-echo_loader.o): in function `init_octasic':
/build/xpp/echo_loader.c:598:(.text+0x1777): undefined reference to `get_ver'
/usr/bin/ld: ./.libs/libecholoader.a(libecholoader_la-echo_loader.o): in function `echo_ver':
/build/xpp/echo_loader.c:883:(.text+0x2503): undefined reference to `get_ver'
Related: https://stackoverflow.com/a/77501693
Change-Id: I835d82c11f02c9635923d93fa36b46bbb46a9b48
---
M xpp/echo_loader.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, but someone else must approve
Jenkins Builder: Verified
osmith: Looks good to me, approved
fixeria: Looks good to me, but someone else must approve
diff --git a/xpp/echo_loader.c b/xpp/echo_loader.c
index 827f6ef..117414e 100644
--- a/xpp/echo_loader.c
+++ b/xpp/echo_loader.c
@@ -564,7 +564,7 @@
return cOCT6100_ERR_OK;
}
-inline int get_ver(struct astribank *astribank)
+static inline int get_ver(struct astribank *astribank)
{
return spi_send(astribank, 0, 0, 1, 1);
}
--
To view, visit https://gerrit.osmocom.org/c/dahdi-tools/+/41174?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: dahdi-tools
Gerrit-Branch: master
Gerrit-Change-Id: I835d82c11f02c9635923d93fa36b46bbb46a9b48
Gerrit-Change-Number: 41174
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/41177?usp=email )
Change subject: ccid_host: fix read_timeout defined but not used
......................................................................
ccid_host: fix read_timeout defined but not used
Comment out the read_timeout fuction, as it is only used in already
commented out code. Fix for:
cuart_driver_tty.c:90:12: warning: 'read_timeout' defined but not used [-Wunused-function]
90 | static int read_timeout(int fd, uint8_t *out, size_t len, unsigned long timeout_ms)
Change-Id: I49fc59ebaa4abc3e9b8838e1b427f4455acdb390
---
M ccid_host/cuart_driver_tty.c
1 file changed, 2 insertions(+), 0 deletions(-)
Approvals:
laforge: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/ccid_host/cuart_driver_tty.c b/ccid_host/cuart_driver_tty.c
index f8a1438..a9032fa 100644
--- a/ccid_host/cuart_driver_tty.c
+++ b/ccid_host/cuart_driver_tty.c
@@ -87,6 +87,7 @@
OSMO_ASSERT(rc == 0);
}
+#if 0
static int read_timeout(int fd, uint8_t *out, size_t len, unsigned long timeout_ms)
{
struct timeval tv = { .tv_sec = timeout_ms / 1000, .tv_usec = (timeout_ms % 1000) * 1000 };
@@ -103,6 +104,7 @@
return read(fd, out, len);
}
+#endif
static int _flush(int fd)
{
--
To view, visit https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/41177?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ccid-firmware
Gerrit-Branch: master
Gerrit-Change-Id: I49fc59ebaa4abc3e9b8838e1b427f4455acdb390
Gerrit-Change-Number: 41177
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
neels has posted comments on this change by neels. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41194?usp=email )
Change subject: hnbgw: fix missing TC_sccp_cr_limit() from control section
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41194?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I0604d937fc909fa66f2a8668c2f6926a269b2b42
Gerrit-Change-Number: 41194
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 01 Oct 2025 23:56:09 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes