gpio/exynos: Fix compiler warning in gpio-samsung.c file
Fixes the following warning when "SAMSUNG EXYNOS5" is not selected: warning: ‘exynos5_gpios_1’ defined but not used [-Wunused-variable] warning: ‘exynos5_gpios_2’ defined but not used [-Wunused-variable] warning: ‘exynos5_gpios_3’ defined but not used [-Wunused-variable] warning: ‘exynos5_gpios_4’ defined but not used [-Wunused-variable] Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
committed by
Grant Likely
parent
6270d830d0
commit
9a5c7d6eb9
@@ -2382,8 +2382,8 @@ static struct samsung_gpio_chip exynos4_gpios_3[] = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct samsung_gpio_chip exynos5_gpios_1[] = {
|
|
||||||
#ifdef CONFIG_ARCH_EXYNOS5
|
#ifdef CONFIG_ARCH_EXYNOS5
|
||||||
|
static struct samsung_gpio_chip exynos5_gpios_1[] = {
|
||||||
{
|
{
|
||||||
.chip = {
|
.chip = {
|
||||||
.base = EXYNOS5_GPA0(0),
|
.base = EXYNOS5_GPA0(0),
|
||||||
@@ -2541,11 +2541,11 @@ static struct samsung_gpio_chip exynos5_gpios_1[] = {
|
|||||||
.to_irq = samsung_gpiolib_to_irq,
|
.to_irq = samsung_gpiolib_to_irq,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct samsung_gpio_chip exynos5_gpios_2[] = {
|
|
||||||
#ifdef CONFIG_ARCH_EXYNOS5
|
#ifdef CONFIG_ARCH_EXYNOS5
|
||||||
|
static struct samsung_gpio_chip exynos5_gpios_2[] = {
|
||||||
{
|
{
|
||||||
.chip = {
|
.chip = {
|
||||||
.base = EXYNOS5_GPE0(0),
|
.base = EXYNOS5_GPE0(0),
|
||||||
@@ -2602,11 +2602,11 @@ static struct samsung_gpio_chip exynos5_gpios_2[] = {
|
|||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct samsung_gpio_chip exynos5_gpios_3[] = {
|
|
||||||
#ifdef CONFIG_ARCH_EXYNOS5
|
#ifdef CONFIG_ARCH_EXYNOS5
|
||||||
|
static struct samsung_gpio_chip exynos5_gpios_3[] = {
|
||||||
{
|
{
|
||||||
.chip = {
|
.chip = {
|
||||||
.base = EXYNOS5_GPV0(0),
|
.base = EXYNOS5_GPV0(0),
|
||||||
@@ -2638,11 +2638,11 @@ static struct samsung_gpio_chip exynos5_gpios_3[] = {
|
|||||||
.label = "GPV4",
|
.label = "GPV4",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct samsung_gpio_chip exynos5_gpios_4[] = {
|
|
||||||
#ifdef CONFIG_ARCH_EXYNOS5
|
#ifdef CONFIG_ARCH_EXYNOS5
|
||||||
|
static struct samsung_gpio_chip exynos5_gpios_4[] = {
|
||||||
{
|
{
|
||||||
.chip = {
|
.chip = {
|
||||||
.base = EXYNOS5_GPZ(0),
|
.base = EXYNOS5_GPZ(0),
|
||||||
@@ -2650,8 +2650,8 @@ static struct samsung_gpio_chip exynos5_gpios_4[] = {
|
|||||||
.label = "GPZ",
|
.label = "GPZ",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(CONFIG_ARCH_EXYNOS) && defined(CONFIG_OF)
|
#if defined(CONFIG_ARCH_EXYNOS) && defined(CONFIG_OF)
|
||||||
|
Reference in New Issue
Block a user