diff mbox series

arm: omap2: Fix warning in force_emif_self_refresh

Message ID 20230717192643.2063493-1-trini@konsulko.com
State Accepted
Commit 7c97b715e920bc41f628b39925ac829ff9cf7d8f
Delegated to: Tom Rini
Headers show
Series arm: omap2: Fix warning in force_emif_self_refresh | expand

Commit Message

Tom Rini July 17, 2023, 7:26 p.m. UTC
The function declaration for force_emif_self_refresh takes no parameters
but does not specify this, only the prototype in the headers do.  As
clang will warn about this, correct it.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 arch/arm/mach-omap2/emif-common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini July 21, 2023, 11:34 p.m. UTC | #1
On Mon, Jul 17, 2023 at 03:26:43PM -0400, Tom Rini wrote:

> The function declaration for force_emif_self_refresh takes no parameters
> but does not specify this, only the prototype in the headers do.  As
> clang will warn about this, correct it.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/arch/arm/mach-omap2/emif-common.c b/arch/arm/mach-omap2/emif-common.c
index a6a97af37d7b..9daaeef73190 100644
--- a/arch/arm/mach-omap2/emif-common.c
+++ b/arch/arm/mach-omap2/emif-common.c
@@ -40,7 +40,7 @@  void set_lpmode_selfrefresh(u32 base)
 	readl(&emif->emif_pwr_mgmt_ctrl);
 }
 
-void force_emif_self_refresh()
+void force_emif_self_refresh(void)
 {
 	set_lpmode_selfrefresh(EMIF1_BASE);
 	if (!is_dra72x())