aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-02-03 13:11:27 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2023-03-03 12:46:16 +0100
commit6f4176271742090c3f64cfd0bb44ca93689a9e17 (patch)
treeb3c7ad96a39222e2c605634ac13ba4184181dcc4 /src
parent916e9d34542f29a33c35c6b2e5db1a7a955e4cab (diff)
pcu_l1_if: cosmetic: remove whitespace after *
Diffstat (limited to 'src')
-rw-r--r--src/pcu_l1_if.cpp4
-rw-r--r--src/pcu_l1_if.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp
index 258a1186..3eff68fa 100644
--- a/src/pcu_l1_if.cpp
+++ b/src/pcu_l1_if.cpp
@@ -255,7 +255,7 @@ void pcu_l1if_tx_ptcch(struct gprs_rlcmac_bts *bts,
pcu_tx_data_req(bts, trx, ts, PCU_IF_SAPI_PTCCH, arfcn, fn, block_nr, data, data_len);
}
-void pcu_l1if_tx_agch(struct gprs_rlcmac_bts *bts, bitvec * block, int plen)
+void pcu_l1if_tx_agch(struct gprs_rlcmac_bts *bts, bitvec *block, int plen)
{
uint8_t data[GSM_MACBLOCK_LEN]; /* prefix PLEN */
@@ -269,7 +269,7 @@ void pcu_l1if_tx_agch(struct gprs_rlcmac_bts *bts, bitvec * block, int plen)
pcu_tx_data_req(bts, 0, 0, PCU_IF_SAPI_AGCH, 0, 0, 0, data, sizeof(data));
}
-void pcu_l1if_tx_pch(struct gprs_rlcmac_bts *bts, bitvec * block, int plen, uint16_t pgroup)
+void pcu_l1if_tx_pch(struct gprs_rlcmac_bts *bts, bitvec *block, int plen, uint16_t pgroup)
{
uint8_t data[PAGING_GROUP_LEN + GSM_MACBLOCK_LEN];
int i;
diff --git a/src/pcu_l1_if.h b/src/pcu_l1_if.h
index 1b13a925..e7080d5a 100644
--- a/src/pcu_l1_if.h
+++ b/src/pcu_l1_if.h
@@ -146,9 +146,9 @@ void pcu_l1if_tx_ptcch(struct gprs_rlcmac_bts *bts,
uint8_t trx, uint8_t ts, uint16_t arfcn,
uint32_t fn, uint8_t block_nr,
uint8_t *data, size_t data_len);
-void pcu_l1if_tx_agch(struct gprs_rlcmac_bts *bts, bitvec * block, int len);
+void pcu_l1if_tx_agch(struct gprs_rlcmac_bts *bts, bitvec *block, int len);
-void pcu_l1if_tx_pch(struct gprs_rlcmac_bts *bts, bitvec * block, int plen, uint16_t pgroup);
+void pcu_l1if_tx_pch(struct gprs_rlcmac_bts *bts, bitvec *block, int plen, uint16_t pgroup);
#endif
#ifdef __cplusplus