diff mbox series

arm-cci: add cci_enable_port_for_self prototype

Message ID 20230516201218.556437-1-arnd@kernel.org (mailing list archive)
State Accepted
Commit db967cf828fc134ba17c5e4539b1a3687cdd3f2d
Headers show
Series arm-cci: add cci_enable_port_for_self prototype | expand

Commit Message

Arnd Bergmann May 16, 2023, 8:12 p.m. UTC
From: Arnd Bergmann <arnd@arndb.de>

The cci_enable_port_for_self() is called from assembler, so
add the prototype only to shut up the W=1 warning:

drivers/bus/arm-cci.c:298:25: error: no previous prototype for 'cci_enable_port_for_self' [-Werror=missing-prototypes]

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 include/linux/arm-cci.h | 2 ++
 1 file changed, 2 insertions(+)

Comments

patchwork-bot+linux-soc@kernel.org May 26, 2023, 11:50 a.m. UTC | #1
Hello:

This patch was applied to soc/soc.git (for-next)
by Arnd Bergmann <arnd@arndb.de>:

On Tue, 16 May 2023 22:12:12 +0200 you wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> The cci_enable_port_for_self() is called from assembler, so
> add the prototype only to shut up the W=1 warning:
> 
> drivers/bus/arm-cci.c:298:25: error: no previous prototype for 'cci_enable_port_for_self' [-Werror=missing-prototypes]
> 
> [...]

Here is the summary with links:
  - arm-cci: add cci_enable_port_for_self prototype
    https://git.kernel.org/soc/soc/c/db967cf828fc

You are awesome, thank you!
diff mbox series

Patch

diff --git a/include/linux/arm-cci.h b/include/linux/arm-cci.h
index d0e44201d855..7f7a576267bc 100644
--- a/include/linux/arm-cci.h
+++ b/include/linux/arm-cci.h
@@ -43,6 +43,8 @@  static inline int __cci_control_port_by_index(u32 port, bool enable)
 }
 #endif
 
+void cci_enable_port_for_self(void);
+
 #define cci_disable_port_by_device(dev) \
 	__cci_control_port_by_device(dev, false)
 #define cci_enable_port_by_device(dev) \