aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/ab8500-sysctrl.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2011-12-02 08:16:33 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2012-01-08 18:37:39 -0500
commitee66e653ca7425bc8ffca4e00f19a8057cd14e4d (patch)
treee566da76e2588bc4871df677063f302213be0427 /drivers/mfd/ab8500-sysctrl.c
parent83051b7287e43241ccb6adaaa92615a87274898b (diff)
mfd: Unify abx500 headers in mfd/abx500
This moves all the header files related to the abx500 family into a common include directory below mfd. From now on we place any subchip header in that directory. Headers previously in e.g. <linux/mfd/ab8500/gpio.h> get prefixed and are now e.g. <linux/mfd/abx500/ab8500-gpio.h>. The top-level abstract interface remains in <linux/mfd/abx500.h>. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/ab8500-sysctrl.c')
-rw-r--r--drivers/mfd/ab8500-sysctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/ab8500-sysctrl.c b/drivers/mfd/ab8500-sysctrl.c
index f20feefac190..c28d4eb1eff0 100644
--- a/drivers/mfd/ab8500-sysctrl.c
+++ b/drivers/mfd/ab8500-sysctrl.c
@@ -7,9 +7,9 @@
7#include <linux/err.h> 7#include <linux/err.h>
8#include <linux/module.h> 8#include <linux/module.h>
9#include <linux/platform_device.h> 9#include <linux/platform_device.h>
10#include <linux/mfd/ab8500.h>
11#include <linux/mfd/abx500.h> 10#include <linux/mfd/abx500.h>
12#include <linux/mfd/ab8500/sysctrl.h> 11#include <linux/mfd/abx500/ab8500.h>
12#include <linux/mfd/abx500/ab8500-sysctrl.h>
13 13
14static struct device *sysctrl_dev; 14static struct device *sysctrl_dev;
15 15