diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-08-31 12:34:09 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-09-02 09:20:23 +0200 |
commit | e3dfbbfb0d873bded3e8c27e6fda07ffebb2d5be (patch) | |
tree | 118a1b84dd1ba7aea81feaed1d18e19d716e8572 /arch/arm | |
parent | 88f4f32268b09605263839d6db4b17c24deabb8b (diff) | |
download | linux-stable-e3dfbbfb0d873bded3e8c27e6fda07ffebb2d5be.tar.gz linux-stable-e3dfbbfb0d873bded3e8c27e6fda07ffebb2d5be.tar.bz2 linux-stable-e3dfbbfb0d873bded3e8c27e6fda07ffebb2d5be.zip |
Revert "ARM: ep93xx: fix missing-prototype warnings"
This reverts commit 6c52a55fc41eebeb76138d3db0704b1cb4d5299e which is
commit 419013740ea1e4343d8ade535d999f59fa28e460 upstream.
It breaks the build, so should be reverted.
Reported-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/98dbc981-56fa-4919-afcc-fdf63e0a1c53@roeck-us.net
Cc: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-ep93xx/timer-ep93xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-ep93xx/timer-ep93xx.c b/arch/arm/mach-ep93xx/timer-ep93xx.c index b07956883e16..de998830f534 100644 --- a/arch/arm/mach-ep93xx/timer-ep93xx.c +++ b/arch/arm/mach-ep93xx/timer-ep93xx.c @@ -9,7 +9,6 @@ #include <linux/io.h> #include <asm/mach/time.h> #include "soc.h" -#include "platform.h" /************************************************************************* * Timer handling for EP93xx @@ -61,7 +60,7 @@ static u64 notrace ep93xx_read_sched_clock(void) return ret; } -static u64 ep93xx_clocksource_read(struct clocksource *c) +u64 ep93xx_clocksource_read(struct clocksource *c) { u64 ret; |