From commits-return-7128-archive-asf-public=cust-asf.ponee.io@nuttx.apache.org Tue Apr 14 16:34:54 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4DFA318064F for ; Tue, 14 Apr 2020 18:34:54 +0200 (CEST) Received: (qmail 7384 invoked by uid 500); 14 Apr 2020 16:34:53 -0000 Mailing-List: contact commits-help@nuttx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nuttx.apache.org Delivered-To: mailing list commits@nuttx.apache.org Received: (qmail 7375 invoked by uid 99); 14 Apr 2020 16:34:53 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Apr 2020 16:34:53 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 915078B6AA; Tue, 14 Apr 2020 16:34:53 +0000 (UTC) Date: Tue, 14 Apr 2020 16:34:53 +0000 To: "commits@nuttx.apache.org" Subject: [incubator-nuttx] branch master updated: arch/arm/src/stm32f7/stm32_flash.c: Fix return value of stm32_flash_lock MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158688209349.17868.832099217905682939@gitbox.apache.org> From: aguettouche@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-nuttx X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 61f6fa769a0cd9ee95e86d094b7991d477d425ff X-Git-Newrev: 88971a15a5bf999bfba31b622c348016f1caa684 X-Git-Rev: 88971a15a5bf999bfba31b622c348016f1caa684 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 88971a1 arch/arm/src/stm32f7/stm32_flash.c: Fix return value of stm32_flash_lock 88971a1 is described below commit 88971a15a5bf999bfba31b622c348016f1caa684 Author: Juha Niskanen AuthorDate: Tue Apr 14 09:45:45 2020 -0600 arch/arm/src/stm32f7/stm32_flash.c: Fix return value of stm32_flash_lock --- arch/arm/src/stm32f7/stm32_flash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/stm32f7/stm32_flash.c b/arch/arm/src/stm32f7/stm32_flash.c index 6268ecf..2b8fdbc 100644 --- a/arch/arm/src/stm32f7/stm32_flash.c +++ b/arch/arm/src/stm32f7/stm32_flash.c @@ -138,7 +138,7 @@ int stm32_flash_unlock(void) return ret; } -void stm32_flash_lock(void) +int stm32_flash_lock(void) { int ret;