diff mbox

[U-Boot,3/3] nds32: fix unused pmu_init warning

Message ID 1344296797-15268-3-git-send-email-vapier@gentoo.org
State Accepted
Commit 11a05fbde76765e4b256b86aa3b82ea3184e3c08
Delegated to: Macpaul Lin
Headers show

Commit Message

Mike Frysinger Aug. 6, 2012, 11:46 p.m. UTC
Fixes the build-time warning:
	board.c: At top level:
	board.c:106: warning: 'pmu_init' defined but not used

This makes the ifdef logic at the call site match the logic at the
function definition.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 arch/nds32/lib/board.c |    2 ++
 1 file changed, 2 insertions(+)

Comments

Macpaul Lin Aug. 10, 2012, 4:49 p.m. UTC | #1
Hi Mike,

2012/8/7 Mike Frysinger <vapier@gentoo.org>:
> Fixes the build-time warning:
>         board.c: At top level:
>         board.c:106: warning: 'pmu_init' defined but not used
>
> This makes the ifdef logic at the call site match the logic at the
> function definition.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Applied to u-boot-nds32.git/master
Thanks.
diff mbox

Patch

diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c
index f5de266..2164a50 100644
--- a/arch/nds32/lib/board.c
+++ b/arch/nds32/lib/board.c
@@ -103,6 +103,7 @@  static int nds32_pci_init(void)
 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
 
 #if defined(CONFIG_PMU) || defined(CONFIG_PCU)
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT
 static int pmu_init(void)
 {
 #if defined(CONFIG_FTPMU010_POWER)
@@ -115,6 +116,7 @@  static int pmu_init(void)
 	return 0;
 }
 #endif
+#endif
 
 /*
  * Breathe some life into the board...