sh-pfc: Remove dependency on GPIOLIB

Make GPIO support optional for platforms that don't support GPIOLIB.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
Laurent Pinchart 2013-04-09 14:06:01 +00:00 committed by Simon Horman
parent 09bbc1fd03
commit bf9f0674e3
3 changed files with 2 additions and 3 deletions

View file

@ -5,8 +5,6 @@
if ARCH_SHMOBILE || SUPERH if ARCH_SHMOBILE || SUPERH
config PINCTRL_SH_PFC config PINCTRL_SH_PFC
# XXX move off the gpio dependency
depends on GPIOLIB
select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB
select PINMUX select PINMUX
select PINCONF select PINCONF

View file

@ -11,6 +11,7 @@
#define __SH_PFC_CORE_H__ #define __SH_PFC_CORE_H__
#include <linux/compiler.h> #include <linux/compiler.h>
#include <linux/spinlock.h>
#include <linux/types.h> #include <linux/types.h>
#include "sh_pfc.h" #include "sh_pfc.h"

View file

@ -11,8 +11,8 @@
#ifndef __SH_PFC_H #ifndef __SH_PFC_H
#define __SH_PFC_H #define __SH_PFC_H
#include <linux/bug.h>
#include <linux/stringify.h> #include <linux/stringify.h>
#include <asm-generic/gpio.h>
typedef unsigned short pinmux_enum_t; typedef unsigned short pinmux_enum_t;