dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-pcu/+/31169 )
Change subject: pcu_l1_if: cosmetic: remove whitespace after * ......................................................................
pcu_l1_if: cosmetic: remove whitespace after *
Change-Id: Idd1abdfb8df4df58271025c7a808a692d9d86af7 --- M src/pcu_l1_if.cpp M src/pcu_l1_if.h 2 files changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/69/31169/1
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp index 26106eb..552cfcb 100644 --- a/src/pcu_l1_if.cpp +++ b/src/pcu_l1_if.cpp @@ -263,7 +263,7 @@ 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 */
@@ -277,7 +277,7 @@ pcu_tx_data_req(bts, 0, 0, PCU_IF_SAPI_AGCH, 0, 0, 0, data, GSM_MACBLOCK_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) { 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 d74bf20..416a02c 100644 --- a/src/pcu_l1_if.h +++ b/src/pcu_l1_if.h @@ -146,9 +146,9 @@ 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); void pcu_l1if_tx_pch_dt(struct gprs_rlcmac_bts *bts, bitvec *block, int plen, uint16_t pgroup, uint32_t tlli); #endif