Message ID | 20230516153109.514251-1-arnd@kernel.org (mailing list archive) |
---|---|
Headers | show |
Series | ARM: SoC: address -Wmissing-prototype warnings | expand |
Hello: This series was applied to soc/soc.git (for-next) by Arnd Bergmann <arnd@arndb.de>: On Tue, 16 May 2023 17:30:56 +0200 you wrote: > From: Arnd Bergmann <arnd@arndb.de> > > This is part of a longer series of patches to address all -Wmissing-prototype > warnings. I would like to take these through the soc tree directly, but > if anyone wants to first apply a patch to their platform specific tree, > I'll drop that one. See the Link below for more background. > > [...] Here is the summary with links: - [01/13] ARM: davinci: fix davinci_cpufreq_init() declaration https://git.kernel.org/soc/soc/c/30955b4afc2b - [02/13] ARM: ep93xx: fix missing-prototype warnings https://git.kernel.org/soc/soc/c/419013740ea1 - [03/13] ARM: highbank: add missing include https://git.kernel.org/soc/soc/c/774f60dd6abc - [04/13] ARM: imx: add missing include https://git.kernel.org/soc/soc/c/5692520a040b - [05/13] ARM: imx: remove unused mx25_revision() (no matching commit) - [06/13] ARM: lpc32xx: add missing include https://git.kernel.org/soc/soc/c/ecd2a5769d09 - [07/13] ARM: omap1: add missing include https://git.kernel.org/soc/soc/c/94c1c0a29bfc - [08/13] ARM: omap2: fix missing tick_broadcast() prototype https://git.kernel.org/soc/soc/c/861bc1d2886d - [09/13] ARM: orion5x: fix d2net gpio initialization https://git.kernel.org/soc/soc/c/f8ef12339394 - [10/13] ARM: pxa: fix missing-prototypes warnings https://git.kernel.org/soc/soc/c/a9ae9c526cc2 - [11/13] ARM: sa1100: address missing prototype warnings https://git.kernel.org/soc/soc/c/6475f4bb3fbd - [12/13] ARM: spear: include "pl080.h" for pl080_get_signal() prototype https://git.kernel.org/soc/soc/c/5e40c79a513b - [13/13] ARM: versatile: mark mmc_status() static https://git.kernel.org/soc/soc/c/88813f05b834 You are awesome, thank you!
From: Arnd Bergmann <arnd@arndb.de> This is part of a longer series of patches to address all -Wmissing-prototype warnings. I would like to take these through the soc tree directly, but if anyone wants to first apply a patch to their platform specific tree, I'll drop that one. See the Link below for more background. Arnd Link: https://people.kernel.org/arnd/missing-prototype-warnings-in-the-kernel Arnd Bergmann (13): ARM: davinci: fix davinci_cpufreq_init() declaration ARM: ep93xx: fix missing-prototype warnings ARM: highbank: add missing include ARM: imx: add missing include ARM: imx: remove unused mx25_revision() ARM: lpc32xx: add missing include ARM: omap1: add missing include ARM: omap2: fix missing tick_broadcast() prototype ARM: orion5x: fix d2net gpio initialization ARM: pxa: fix missing-prototypes warnings ARM: sa1100: address missing prototype warnings ARM: spear: include "pl080.h" for pl080_get_signal() prototype ARM: versatile: mark mmc_status() static arch/arm/common/sa1111.c | 2 +- arch/arm/mach-davinci/common.c | 1 + arch/arm/mach-davinci/common.h | 6 --- arch/arm/mach-ep93xx/timer-ep93xx.c | 3 +- arch/arm/mach-highbank/pm.c | 2 + arch/arm/mach-imx/Makefile | 2 +- arch/arm/mach-imx/cpu-imx25.c | 50 ------------------- arch/arm/mach-imx/pm-imx25.c | 1 + arch/arm/mach-lpc32xx/serial.c | 1 + arch/arm/mach-omap1/serial.c | 1 + arch/arm/mach-omap2/board-generic.c | 1 + arch/arm/mach-orion5x/board-dt.c | 3 ++ arch/arm/mach-orion5x/common.h | 6 +++ arch/arm/mach-pxa/generic.h | 15 ------ arch/arm/mach-pxa/mfp-pxa2xx.c | 1 + arch/arm/mach-pxa/pxa25x.c | 1 + arch/arm/mach-pxa/pxa27x.c | 3 ++ arch/arm/mach-pxa/reset.c | 1 + arch/arm/mach-pxa/spitz_pm.c | 2 +- arch/arm/mach-sa1100/assabet.c | 2 +- arch/arm/mach-sa1100/pm.c | 2 + arch/arm/mach-spear/pl080.c | 1 + arch/arm/mach-versatile/versatile.c | 2 +- drivers/clk/pxa/clk-pxa25x.c | 2 + drivers/clk/pxa/clk-pxa27x.c | 3 +- drivers/hwmon/max1111.c | 1 + drivers/usb/gadget/udc/pxa27x_udc.c | 6 --- drivers/usb/host/ohci-pxa27x.c | 7 +-- include/linux/platform_data/asoc-pxa.h | 1 + include/linux/platform_data/davinci-cpufreq.h | 6 +++ include/linux/platform_data/pxa2xx_udc.h | 6 +++ include/linux/soc/pxa/smemc.h | 16 ++++++ sound/arm/pxa2xx-ac97-lib.c | 2 - 33 files changed, 67 insertions(+), 92 deletions(-) delete mode 100644 arch/arm/mach-imx/cpu-imx25.c