From patchwork Wed May 25 20:07:03 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: 626445 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 3rFNbb3cWFz9sDk for ; Thu, 26 May 2016 06:07:07 +1000 (AEST) Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by lists.osmocom.org (Postfix) with ESMTP id 0662213478; Wed, 25 May 2016 20:07:05 +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 0B71C13456; Wed, 25 May 2016 20:07:04 +0000 (UTC) Date: Wed, 25 May 2016 20:07:03 +0000 From: Holger Freyther To: lynxis lazus X-Gerrit-MessageType: merged Subject: [MERGED] osmo-pcu[master]: add comments to describe functions X-Gerrit-Change-Id: Ie351632001abbeb82008a5eecae0d0323a8ef7d7 X-Gerrit-ChangeURL: X-Gerrit-Commit: 2fcfc29020c81891d7888ddc7ddbcd866bcd406d In-Reply-To: References: 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: holger@freyther.de Errors-To: openbsc-bounces@lists.osmocom.org Sender: "OpenBSC" Message-Id: <20160525200706.0662213478@lists.osmocom.org> Holger Freyther has submitted this change and it was merged. Change subject: add comments to describe functions ...................................................................... add comments to describe functions Change-Id: Ie351632001abbeb82008a5eecae0d0323a8ef7d7 Reviewed-on: https://gerrit.osmocom.org/106 Reviewed-by: Harald Welte Tested-by: Jenkins Builder --- M src/bts.cpp M src/tbf_ul.cpp 2 files changed, 2 insertions(+), 0 deletions(-) Approvals: Harald Welte: Looks good to me, approved Jenkins Builder: Verified diff --git a/src/bts.cpp b/src/bts.cpp index 03b0401..953ac4d 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 1316204..e7c64ad 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)