diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2013-07-16 02:01:00 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2013-07-29 15:17:37 +0200 |
commit | 75906431564c85738189a000e6e81c29123c61da (patch) | |
tree | 9a7c9b268000efeec9e8e829a21514433d361e17 /drivers/pinctrl/sh-pfc/core.c | |
parent | 4e5ca4a1e65d6c9f7a26b8af26ec6cf1c516f31b (diff) | |
download | linux-75906431564c85738189a000e6e81c29123c61da.tar.gz linux-75906431564c85738189a000e6e81c29123c61da.tar.bz2 linux-75906431564c85738189a000e6e81c29123c61da.zip |
sh-pfc: Remove unused input_pd and input_pu ranges
The ranges are not used anymore, remove them.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
Diffstat (limited to 'drivers/pinctrl/sh-pfc/core.c')
-rw-r--r-- | drivers/pinctrl/sh-pfc/core.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c index f3fc66b24370..1c8597cf57be 100644 --- a/drivers/pinctrl/sh-pfc/core.c +++ b/drivers/pinctrl/sh-pfc/core.c @@ -283,14 +283,6 @@ int sh_pfc_config_mux(struct sh_pfc *pfc, unsigned mark, int pinmux_type) range = &pfc->info->input; break; - case PINMUX_TYPE_INPUT_PULLUP: - range = &pfc->info->input_pu; - break; - - case PINMUX_TYPE_INPUT_PULLDOWN: - range = &pfc->info->input_pd; - break; - default: return -EINVAL; } |