aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-22 01:34:32 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-22 02:51:36 +0300
commit31637b467325dd456bfb0d23666648db49711305 (patch)
tree811cf8dc76675b8a239963c4fb624d8b85d1df6b /include
parente3818832b05f84ba9af6a225cca82e2e8940c6c2 (diff)
measurement: handle_ms_meas_report() accepts const gh
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/measurement.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/osmo-bts/measurement.h b/include/osmo-bts/measurement.h
index 481b7bed..f63a05a0 100644
--- a/include/osmo-bts/measurement.h
+++ b/include/osmo-bts/measurement.h
@@ -20,6 +20,8 @@ bool ts45008_83_is_sub(struct gsm_lchan *lchan, uint32_t fn);
int is_meas_complete(struct gsm_lchan *lchan, uint32_t fn);
-int handle_ms_meas_report(struct gsm_lchan *lchan, struct gsm48_hdr *gh, unsigned int len);
+int handle_ms_meas_report(struct gsm_lchan *lchan,
+ const struct gsm48_hdr *gh,
+ unsigned int len);
#endif