From patchwork Tue May 24 12:48:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: gerrit-no-reply@lists.osmocom.org X-Patchwork-Id: 625611 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by ozlabs.org (Postfix) with ESMTP id 3rDZvX5hnZz9sdn for ; Tue, 24 May 2016 22:48:08 +1000 (AEST) Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by lists.osmocom.org (Postfix) with ESMTP id 4507E6711; Tue, 24 May 2016 12:48:07 +0000 (UTC) X-Original-To: openbsc@lists.osmocom.org Delivered-To: openbsc@lists.osmocom.org Received: from 127.0.1.12 (unknown [127.0.1.12]) by lists.osmocom.org (Postfix) with ESMTPA id AE42B66D2; Tue, 24 May 2016 12:48:02 +0000 (UTC) Date: Tue, 24 May 2016 12:48:02 +0000 From: lynxis lazus Message-ID: X-Gerrit-MessageType: newchange Subject: [PATCH] osmo-pcu[master]: add comments to describe functions X-Gerrit-Change-Id: Ie351632001abbeb82008a5eecae0d0323a8ef7d7 X-Gerrit-ChangeURL: X-Gerrit-Commit: 799249dca4c915291246d28b308ee16e335559bc MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/2.12.2-31-gb331dbd-dirty X-BeenThere: openbsc@lists.osmocom.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Development of OpenBSC, OsmoBSC, OsmoNITB, OsmoCSCN" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: lynxis@fe80.eu Errors-To: openbsc-bounces@lists.osmocom.org Sender: "OpenBSC" Review at https://gerrit.osmocom.org/106 add comments to describe functions Change-Id: Ie351632001abbeb82008a5eecae0d0323a8ef7d7 --- M src/bts.cpp M src/tbf_ul.cpp 2 files changed, 2 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/06/106/1 diff --git a/src/bts.cpp b/src/bts.cpp index fdae1f0..c3d17ff 100644 --- a/src/bts.cpp +++ b/src/bts.cpp @@ -1317,6 +1317,7 @@ return -EINVAL; } +/*! \brief process egprs and gprs data blocks */ int gprs_rlcmac_pdch::rcv_data_block(uint8_t *data, uint32_t fn, struct pcu_l1_meas *meas, GprsCodingScheme cs) { diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp index 5178875..23b21e3 100644 --- a/src/tbf_ul.cpp +++ b/src/tbf_ul.cpp @@ -138,6 +138,7 @@ return msg; } +/*! \brief receive data from PDCH/L1 */ int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged( const struct gprs_rlc_data_info *rlc, uint8_t *data, struct pcu_l1_meas *meas)