fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmocom-bb/+/31852 )
Change subject: virt_phy: cosmetic: make the linter happy about identifier names
......................................................................
virt_phy: cosmetic: make the linter happy about identifier names
Change-Id: I415f4b6f65c16a5dac84c75c5f97bf12109c74e5
Related: OS#5500
---
M src/host/virt_phy/include/osmocom/bb/virtphy/l1ctl_sap.h
1 file changed, 35 insertions(+), 25 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/52/31852/1
diff --git a/src/host/virt_phy/include/osmocom/bb/virtphy/l1ctl_sap.h
b/src/host/virt_phy/include/osmocom/bb/virtphy/l1ctl_sap.h
index 1a61f29..e77de84 100644
--- a/src/host/virt_phy/include/osmocom/bb/virtphy/l1ctl_sap.h
+++ b/src/host/virt_phy/include/osmocom/bb/virtphy/l1ctl_sap.h
@@ -42,39 +42,39 @@
uint16_t arfcn);
/* receive routines */
-void l1ctl_rx_fbsb_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_dm_est_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_dm_rel_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_param_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_dm_freq_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_crypto_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_rach_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_data_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_pm_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_reset_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_ccch_mode_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_tch_mode_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_neigh_pm_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_traffic_req(struct l1_model_ms *, struct msgb *msg);
-void l1ctl_rx_sim_req(struct l1_model_ms *, struct msgb *msg);
+void l1ctl_rx_fbsb_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_dm_est_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_dm_rel_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_param_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_dm_freq_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_crypto_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_rach_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_data_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_pm_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_reset_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_ccch_mode_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_tch_mode_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_neigh_pm_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_traffic_req(struct l1_model_ms *ms, struct msgb *msg);
+void l1ctl_rx_sim_req(struct l1_model_ms *ms, struct msgb *msg);
/* transmit routines */
-void l1ctl_tx_reset(struct l1_model_ms *, uint8_t msg_type, uint8_t reset_type);
-void l1ctl_tx_rach_conf(struct l1_model_ms *, uint32_t fn, uint16_t arfcn);
-void l1ctl_tx_data_conf(struct l1_model_ms *, uint32_t fn, uint16_t snr, uint16_t
arfcn);
-void l1ctl_tx_data_ind(struct l1_model_ms *, struct msgb *msg, uint16_t arfcn, uint8_t
link_id,
+void l1ctl_tx_reset(struct l1_model_ms *ms, uint8_t msg_type, uint8_t reset_type);
+void l1ctl_tx_rach_conf(struct l1_model_ms *ms, uint32_t fn, uint16_t arfcn);
+void l1ctl_tx_data_conf(struct l1_model_ms *ms, uint32_t fn, uint16_t snr, uint16_t
arfcn);
+void l1ctl_tx_data_ind(struct l1_model_ms *ms, struct msgb *msg, uint16_t arfcn, uint8_t
link_id,
uint8_t chan_nr, uint32_t fn, uint8_t snr,
uint8_t signal_dbm, uint8_t num_biterr,
uint8_t fire_crc);
-void l1ctl_tx_traffic_conf(struct l1_model_ms *, uint32_t fn, uint16_t snr, uint16_t
arfcn);
-void l1ctl_tx_traffic_ind(struct l1_model_ms *, struct msgb *msg, uint16_t arfcn, uint8_t
link_id,
+void l1ctl_tx_traffic_conf(struct l1_model_ms *ms, uint32_t fn, uint16_t snr, uint16_t
arfcn);
+void l1ctl_tx_traffic_ind(struct l1_model_ms *ms, struct msgb *msg, uint16_t arfcn,
uint8_t link_id,
uint8_t chan_nr, uint32_t fn, uint8_t snr,
uint8_t signal_dbm, uint8_t num_biterr,
uint8_t fire_crc);
-void l1ctl_tx_pm_conf(struct l1_model_ms *, struct l1ctl_pm_req *pm_req);
-void l1ctl_tx_fbsb_conf(struct l1_model_ms *, uint8_t res, uint16_t arfcn);
-void l1ctl_tx_ccch_mode_conf(struct l1_model_ms *, uint8_t ccch_mode);
-void l1ctl_tx_tch_mode_conf(struct l1_model_ms *, uint8_t tch_mode, uint8_t audio_mode);
+void l1ctl_tx_pm_conf(struct l1_model_ms *ms, struct l1ctl_pm_req *pm_req);
+void l1ctl_tx_fbsb_conf(struct l1_model_ms *ms, uint8_t res, uint16_t arfcn);
+void l1ctl_tx_ccch_mode_conf(struct l1_model_ms *ms, uint8_t ccch_mode);
+void l1ctl_tx_tch_mode_conf(struct l1_model_ms *ms, uint8_t tch_mode, uint8_t
audio_mode);
/* scheduler functions */
uint32_t sched_fn_ul(struct gsm_time cur_time, uint8_t chan_nr,
--
To view, visit
https://gerrit.osmocom.org/c/osmocom-bb/+/31852
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I415f4b6f65c16a5dac84c75c5f97bf12109c74e5
Gerrit-Change-Number: 31852
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange