From patchwork Tue May 16 15:45:52 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 683191 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 2866AC7EE25 for ; Tue, 16 May 2023 15:47:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234234AbjEPPrs (ORCPT ); Tue, 16 May 2023 11:47:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41400 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234194AbjEPPrf (ORCPT ); Tue, 16 May 2023 11:47:35 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AE9FE8A48; Tue, 16 May 2023 08:47:11 -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 3183A634FA; Tue, 16 May 2023 15:46:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 69CF2C433A0; Tue, 16 May 2023 15:46:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684251987; bh=+PXaRTBSn60jQ/X7Rv0TDk12fsmWqv5PZ6FzfOCld7E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=K23LPUi1cGEmRv5eV1Nv/q8aasoK1fyVpkve5eGfHtw3d/bIG+h+wHe+0CwHSxL4k 36dMGKcxmRgmRfKSKV20BQknak7j5m2zroRfqznnoNuOdeQN5nWwNOND4omv0084mB otqjvUSxNEouxQl6gNzZgIXjU1Q6CyNMEa7VPLZW8G0+VnWgB4Kn3Wmb8hR6kx2NtC 9GOrPVKyBicSYc14OJABRBn/5ctmu6ro61sOKq+nkN8OFZWT2Rqmq1aaVzu0Fftm/A AnMS1nqKi0fOpcQp6ASMbji/5Or0BlQ9Zcwer7L1VwLmD3ttvxFfge0gm+PJeRhPOT s0YH+0qJMW7hg== From: Arnd Bergmann To: Russell King Cc: Arnd Bergmann , Steven Rostedt , Masami Hiramatsu , Mark Rutland , Oleg Nesterov , "Rafael J. Wysocki" , Pavel Machek , Linus Walleij , Ard Biesheuvel , Kees Cook , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-trace-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: [PATCH 03/16] ARM: vfp: include asm/neon.h in vfpmodule.c Date: Tue, 16 May 2023 17:45:52 +0200 Message-Id: <20230516154605.517690-4-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230516154605.517690-1-arnd@kernel.org> References: <20230516154605.517690-1-arnd@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org From: Arnd Bergmann Two functions defined here need the declaration in a header to avoid W=1 warnings: arch/arm/vfp/vfpmodule.c:735:6: error: no previous prototype for 'kernel_neon_begin' [-Werror=missing-prototypes] arch/arm/vfp/vfpmodule.c:768:6: error: no previous prototype for 'kernel_neon_end' [-Werror=missing-prototypes] Signed-off-by: Arnd Bergmann --- arch/arm/vfp/vfpmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index 349dcb944a93..1ba5078c1025 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "vfpinstr.h" #include "vfp.h"