pinctrl: mvebu: armada-xp: provide generic mpp callbacks
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Fri, 31 Jan 2014 00:33:45 +0000 (01:33 +0100)
committerSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Tue, 25 Feb 2014 17:35:41 +0000 (18:35 +0100)
We want to get rid of passing register addresses to common pinctrl
driver, so provide set/get callbacks that use generic mpp pins helper
and will be used later.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
drivers/pinctrl/mvebu/pinctrl-armada-xp.c

index 843a51f9d129c2d1ac6c95c202a06b07bcd24c06..a22bbbdeff1933c91363e3b23706035419849cd5 100644 (file)
 
 #include "pinctrl-mvebu.h"
 
+static void __iomem *mpp_base;
+
+static int armada_xp_mpp_ctrl_get(unsigned pid, unsigned long *config)
+{
+       return default_mpp_ctrl_get(mpp_base, pid, config);
+}
+
+static int armada_xp_mpp_ctrl_set(unsigned pid, unsigned long config)
+{
+       return default_mpp_ctrl_set(mpp_base, pid, config);
+}
+
 enum armada_xp_variant {
        V_MV78230       = BIT(0),
        V_MV78260       = BIT(1),
This page took 0.028291 seconds and 5 git commands to generate.