From mboxrd@z Thu Jan 1 00:00:00 1970 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 828F6C5AD4C for ; Thu, 23 Nov 2023 11:05:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344904AbjKWLFS (ORCPT ); Thu, 23 Nov 2023 06:05:18 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48934 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229542AbjKWLFP (ORCPT ); Thu, 23 Nov 2023 06:05:15 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1A814BA for ; Thu, 23 Nov 2023 03:05:22 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A2C85C433C7; Thu, 23 Nov 2023 11:05:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700737521; bh=kmSnZk3RczC2wW7hFftznkdHr9ZkDg70PDOUA+ZVjaE=; h=From:To:Cc:Subject:Date:From; b=M9YhBGVoZhY2hbzM62ATfyVt/7tQ/oQ/qZpdbJ2qea36LpolKDbmowhX0AC5g7lLk sieaJZf1+aJIe6RlnZFwpUWbe/PNidPyvX1032SN/Lwqzuba5orpijIZqVQRxHnO8W LRftkoW7bXxIrXatQbuFQGzAdw2elNRJIxC3rIjn2qQVQcfC9JkzCiX6xGNFCITeE3 AOg4JIWtddSPTOo6FzQGoFztM6o4Hy4i/nts34VgnTPpGB8h4PDw8YDdN3d0w6RELS lnxhloqHqGtyXUCmF3Imyl4OpgK7uvUX4NtIedFziLAPEYOAuGarmedGM1FejKTB+G xC85zbozSZrPA== From: Arnd Bergmann To: Andrew Morton Cc: Arnd Bergmann , "David S. Miller" , David Woodhouse , Dinh Nguyen , Greg Kroah-Hartman , Ivan Kokshaysky , John Paul Adrian Glaubitz , Michael Ellerman , Masahiro Yamada , Matt Turner , Nathan Chancellor , Nicolas Schier , Peter Zijlstra , Rich Felker , Richard Henderson , Richard Weinberger , Stephen Rothwell , Thomas Bogendoerfer , Tudor Ambarus , Yoshinori Sato , linux-arch@vger.kernel.org, linux-alpha@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mips@vger.kernel.org, linux-mtd@lists.infradead.org, linux-sh@vger.kernel.org, linux-usb@vger.kernel.org, sparclinux@vger.kernel.org, x86@kernel.org Subject: [PATCH v3 0/6] Treewide: enable -Wmissing-prototypes Date: Thu, 23 Nov 2023 12:05:00 +0100 Message-Id: <20231123110506.707903-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Arnd Bergmann Hi Andrew, I think all other patches I have sent for -Wmissing-prototypes have made it into linux-next by now, these ones either got an Ack from the respective maintainers, or never got a reply. I just merged a few patches from my previous series into the asm-generic tree, these are not in linux-next today but should be for the next next. I also resent the powerpc patches to make sure they get merged soon. Can you pick these six up into -mm for v6.8? Quoting from my description to patch 6/6: "At this point, there are five architectures with a number of known regressions: alpha, nios2, mips, sh and sparc. In the previous version of this patch, I had turned off the missing prototype warnings for the 15 architectures that still had issues, but since there are only five left, I think we can leave the rest to the maintainers (Cc'd here) as well." The series is also likely to cause occasional build regressions on linux-next as developers add new code that misses prototypes. Hopefully this should be resolved by the time the patches make it into a release and everyone gets the warnings right away. Arnd Arnd Bergmann (6): ida: make 'ida_dump' static jffs2: mark __jffs2_dbg_superblock_counts() static sched: fair: move unused stub functions to header x86: sta2x11: include header for sta2x11_get_instance() prototype usb: fsl-mph-dr-of: mark fsl_usb2_mpc5121_init() static Makefile.extrawarn: turn on missing-prototypes globally arch/x86/pci/sta2x11-fixup.c | 1 + drivers/usb/host/fsl-mph-dr-of.c | 2 +- fs/jffs2/debug.c | 2 +- kernel/sched/fair.c | 13 ------------- kernel/sched/sched.h | 11 +++++++++++ lib/test_ida.c | 2 +- scripts/Makefile.extrawarn | 4 ++-- 7 files changed, 17 insertions(+), 18 deletions(-) -- 2.39.2 Cc: "David S. Miller" Cc: David Woodhouse Cc: Dinh Nguyen Cc: Greg Kroah-Hartman Cc: Ivan Kokshaysky Cc: John Paul Adrian Glaubitz Cc: Michael Ellerman Cc: Masahiro Yamada Cc: Matt Turner Cc: Nathan Chancellor Cc: Nicolas Schier Cc: Peter Zijlstra Cc: Rich Felker Cc: Richard Henderson Cc: Richard Weinberger Cc: Stephen Rothwell Cc: Thomas Bogendoerfer Cc: Tudor Ambarus Cc: Yoshinori Sato Cc: linux-arch@vger.kernel.org Cc: linux-alpha@vger.kernel.org Cc: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: linux-mips@vger.kernel.org Cc: linux-mtd@lists.infradead.org Cc: linux-sh@vger.kernel.org Cc: linux-usb@vger.kernel.org Cc: sparclinux@vger.kernel.org Cc: x86@kernel.org