From nobody Sun Dec 14 05:53:27 2025 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 96C93C6FD1F for ; Wed, 22 Mar 2023 04:00:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230307AbjCVEAk (ORCPT ); Wed, 22 Mar 2023 00:00:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46796 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230257AbjCVEA0 (ORCPT ); Wed, 22 Mar 2023 00:00:26 -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 6CD5747403 for ; Tue, 21 Mar 2023 21:00:25 -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 C52D661ED7 for ; Wed, 22 Mar 2023 04:00:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9A3F8C433A1; Wed, 22 Mar 2023 04:00:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1679457624; bh=QIV/cEnEzL7WBeJCOmt5xLvQJhUqQpKK+8+VlbgRk9U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DRtffnoaIadl3zDBIZesmRxjD8edsN+2yBdx/qEFRedOIbG7vm/wd/vaCVGYRbtuS KARPX0xGOhlinI3MIcmkd9iZKFfObhdEV5pfqyCBQHxxodGVjUQZxPULLhFNSK0BB8 dN2kTQnEIxwZJpK+JQwQkBJ8r9JjwhONwgtwcfvgMADbYf5zqA648zN8nqQKdEu6MW AEuKrDTswZ3El4E/2xyPbz8OLnckHqjSPIzzzrewTNqnv7ufpWcxq2YCAx3UlQ0CHW xvcTDoEwZGVVhx0vCUBk7gbNix834HehgKGfPJuY1KQeYiqETcb6/Hopx2tuBY3vgO sioRJ9KUG1EyQ== From: Josh Poimboeuf To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Mark Rutland , Jason Baron , Steven Rostedt , Ard Biesheuvel , Christophe Leroy , Paolo Bonzini , Sean Christopherson , Sami Tolvanen , Nick Desaulniers , Will McVicker , Kees Cook , linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 03/11] static_call: Remove static_call_mod_init() declaration Date: Tue, 21 Mar 2023 21:00:09 -0700 Message-Id: <3b07f3830d7e4e967cc9714dbf54b7391f35cf8b.1679456900.git.jpoimboe@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" This function doesn't exist (and never did). Signed-off-by: Josh Poimboeuf --- include/linux/static_call.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/static_call.h b/include/linux/static_call.h index f984b8f6d974..890ddc0c3190 100644 --- a/include/linux/static_call.h +++ b/include/linux/static_call.h @@ -177,7 +177,6 @@ struct static_call_tramp_key { }; =20 extern void __static_call_update(struct static_call_key *key, void *tramp,= void *func); -extern int static_call_mod_init(struct module *mod); extern int static_call_text_reserved(void *start, void *end); =20 extern long __static_call_return0(void); --=20 2.39.2