diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-12-03 15:50:49 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 08:27:42 +0000 |
commit | 97b583f3b491f75712b0edc89c26a112f3847ab3 (patch) | |
tree | c9eef5d3a67b459dcf521f38549871b95e4293d2 /include/linux/mfd/abx500 | |
parent | 45e842235626fa4ff78d53aa92c45f8fbc9a69c4 (diff) | |
download | linux-97b583f3b491f75712b0edc89c26a112f3847ab3.tar.gz linux-97b583f3b491f75712b0edc89c26a112f3847ab3.tar.bz2 linux-97b583f3b491f75712b0edc89c26a112f3847ab3.zip |
mfd/pinctrl: Delete platform data header
This deletes the special AB8500 GPIO platform data passing
header and merges the few remaining contents down into the
abx500 pinctrl driver which handles the abx500 GPIO device.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd/abx500')
-rw-r--r-- | include/linux/mfd/abx500/ab8500-gpio.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/linux/mfd/abx500/ab8500-gpio.h b/include/linux/mfd/abx500/ab8500-gpio.h deleted file mode 100644 index ebef068cbb6f..000000000000 --- a/include/linux/mfd/abx500/ab8500-gpio.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright ST-Ericsson 2010. - * - * Author: Bibek Basu <bibek.basu@stericsson.com> - * Licensed under GPLv2. - */ - -#ifndef _AB8500_GPIO_H -#define _AB8500_GPIO_H - -enum abx500_gpio_pull_updown { - ABX500_GPIO_PULL_DOWN = 0x0, - ABX500_GPIO_PULL_NONE = 0x1, - ABX500_GPIO_PULL_UP = 0x3, -}; - -enum abx500_gpio_vinsel { - ABX500_GPIO_VINSEL_VBAT = 0x0, - ABX500_GPIO_VINSEL_VIN_1V8 = 0x1, - ABX500_GPIO_VINSEL_VDD_BIF = 0x2, -}; - -#endif /* _AB8500_GPIO_H */ |