From: Arnd Bergmann Date: Tue, 16 May 2023 15:31:09 +0000 (+0200) Subject: ARM: versatile: mark mmc_status() static X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=88813f05b834756dfcadb7fbd7bf8f21e69b7811;p=linux.git ARM: versatile: mark mmc_status() static mmc_status() is only used in the file it is defined in, and no longer has an 'extern' declaration: arch/arm/mach-versatile/versatile.c:56:14: error: no previous prototype for 'mmc_status' Fixes: 16956fed35fe ("ARM: versatile: switch to DT only booting and remove legacy code") Link: https://lore.kernel.org/r/20230516153109.514251-14-arnd@kernel.org Signed-off-by: Arnd Bergmann --- diff --git a/arch/arm/mach-versatile/versatile.c b/arch/arm/mach-versatile/versatile.c index 02ba68abe5330..7ef03d0c224d5 100644 --- a/arch/arm/mach-versatile/versatile.c +++ b/arch/arm/mach-versatile/versatile.c @@ -53,7 +53,7 @@ static void __iomem *versatile_sys_base; -unsigned int mmc_status(struct device *dev) +static unsigned int mmc_status(struct device *dev) { struct amba_device *adev = container_of(dev, struct amba_device, dev); u32 mask;