From patchwork Tue May 16 20:23:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 13243824 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 22DA0C77B75 for ; Tue, 16 May 2023 20:23:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230413AbjEPUXl (ORCPT ); Tue, 16 May 2023 16:23:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43644 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229736AbjEPUXk (ORCPT ); Tue, 16 May 2023 16:23:40 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1AB8D132; Tue, 16 May 2023 13:23:40 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A4360635A2; Tue, 16 May 2023 20:23:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 51D50C433EF; Tue, 16 May 2023 20:23:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684268619; bh=pqehcCkjyDBJ2mQ+/BvHGhafgHlU9rCc7eAl+CgbqNE=; h=From:To:Cc:Subject:Date:From; b=BXL5iFvw0eO0Gt26tpEq15A89OIxyqVuD49h3yjSppz8T98vw8hiSig1lZYLOe9YD PMeKQOOQv/sufdyRPXIvEq+y8Ni5+uLZQMp7y/SuO1idzcQ7uLSjoZLBy8lyezYHHV Ju+JwxbInRqWfnmexnOc5ewPa80pZweTDf6tWSy+GQ4fs2XRg+02omAp8OrMKlO8UP y+mz/gpqNTMpbnb6nBMEhof97q+VcDkEKoXuv06ePkJ15xzhTIBP7oS92DRYbiqj5x ooCVBFIb1Rh0/DydJEU2Q3AQVJ2TxHfte2gso3cU1I1j1NtnOhyIANzK7BrOwL9LmE qLvOfm7EukRYQ== From: Arnd Bergmann To: Andy Gross , Bjorn Andersson , Mathieu Poirier , Sibi Sankar , Yogesh Lal Cc: Arnd Bergmann , Konrad Dybcio , Mukesh Ojha , Neil Armstrong , Abel Vesa , linux-arm-msm@vger.kernel.org, linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] remoteproc: qcom: pas: mark adsp_segment_dump() static Date: Tue, 16 May 2023 22:23:17 +0200 Message-Id: <20230516202332.560123-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: Arnd Bergmann The function has no other callers and should not be globally defined. Making it static avoids this warning: drivers/remoteproc/qcom_q6v5_pas.c:108:6: error: no previous prototype for 'adsp_segment_dump' Fixes: a376c10d45a8 ("remoteproc: qcom: pas: Adjust the phys addr wrt the mem region") Signed-off-by: Arnd Bergmann --- drivers/remoteproc/qcom_q6v5_pas.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c index e34d82b18a67..a1d69721a0e7 100644 --- a/drivers/remoteproc/qcom_q6v5_pas.c +++ b/drivers/remoteproc/qcom_q6v5_pas.c @@ -105,8 +105,9 @@ struct qcom_adsp { struct qcom_scm_pas_metadata dtb_pas_metadata; }; -void adsp_segment_dump(struct rproc *rproc, struct rproc_dump_segment *segment, - void *dest, size_t offset, size_t size) +static void adsp_segment_dump(struct rproc *rproc, + struct rproc_dump_segment *segment, + void *dest, size_t offset, size_t size) { struct qcom_adsp *adsp = rproc->priv; int total_offset;