Commit a32b4fe9 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Sekhar Nori

ARM: davinci: avoid unused mityomapl138_pn_info variable

The mityomapl138_pn_info structure belongs into the CPU_FREQ support
that is hidden behind an #ifdef, and causes a harmless warning when
that support is disabled:

mach-davinci/board-mityomapl138.c:59:28: error: 'mityomapl138_pn_info' defined but not used [-Werror=unused-variable]

This moves the variable definition where it belongs.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarSekhar Nori <nsekhar@ti.com>
parent 22c7b4a7
...@@ -51,6 +51,7 @@ struct factory_config { ...@@ -51,6 +51,7 @@ struct factory_config {
static struct factory_config factory_config; static struct factory_config factory_config;
#ifdef CONFIG_CPU_FREQ
struct part_no_info { struct part_no_info {
const char *part_no; /* part number string of interest */ const char *part_no; /* part number string of interest */
int max_freq; /* khz */ int max_freq; /* khz */
...@@ -87,7 +88,6 @@ static struct part_no_info mityomapl138_pn_info[] = { ...@@ -87,7 +88,6 @@ static struct part_no_info mityomapl138_pn_info[] = {
}, },
}; };
#ifdef CONFIG_CPU_FREQ
static void mityomapl138_cpufreq_init(const char *partnum) static void mityomapl138_cpufreq_init(const char *partnum)
{ {
int i, ret; int i, ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment