Skip to content
Snippets Groups Projects
Commit 11a05fbd authored by Mike Frysinger's avatar Mike Frysinger Committed by Macpaul Lin
Browse files

nds32: fix unused pmu_init warning


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: default avatarMike Frysinger <vapier@gentoo.org>
parent 782ff0cd
No related branches found
No related tags found
No related merge requests found
...@@ -103,6 +103,7 @@ static int nds32_pci_init(void) ...@@ -103,6 +103,7 @@ static int nds32_pci_init(void)
#endif /* CONFIG_CMD_PCI || CONFIG_PCI */ #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
#if defined(CONFIG_PMU) || defined(CONFIG_PCU) #if defined(CONFIG_PMU) || defined(CONFIG_PCU)
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
static int pmu_init(void) static int pmu_init(void)
{ {
#if defined(CONFIG_FTPMU010_POWER) #if defined(CONFIG_FTPMU010_POWER)
...@@ -115,6 +116,7 @@ static int pmu_init(void) ...@@ -115,6 +116,7 @@ static int pmu_init(void)
return 0; return 0;
} }
#endif #endif
#endif
/* /*
* Breathe some life into the board... * Breathe some life into the board...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment