From patchwork Thu Nov 23 11:05:00 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 13466116 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 40EF8225AE; Thu, 23 Nov 2023 11:05:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="M9YhBGVo" 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 Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 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(-)