aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mfd
diff options
context:
space:
mode:
authorRabin Vincent <rabin.vincent@stericsson.com>2010-09-13 13:04:02 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-09-19 12:12:28 +0100
commitf0a7a98d1d400e2a5fd9a63ed56d30d30f2864cb (patch)
tree7b2b073ced77c27eed9a5817d648f42d83b000b5 /include/linux/mfd
parentARM: 6372/1: ux500: add DB5500 DMA event lines (diff)
downloadlinux-dev-f0a7a98d1d400e2a5fd9a63ed56d30d30f2864cb.tar.xz
linux-dev-f0a7a98d1d400e2a5fd9a63ed56d30d30f2864cb.zip
ARM: 6373/1: tc35892-gpio: add setup/remove callbacks
For board-specific initialization. Cc: Samuel Ortiz <sameo@linux.intel.com> Cc: linux-kernel@vger.kernel.org Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r--include/linux/mfd/tc35892.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mfd/tc35892.h b/include/linux/mfd/tc35892.h
index e47f770d3068..eff3094ca84e 100644
--- a/include/linux/mfd/tc35892.h
+++ b/include/linux/mfd/tc35892.h
@@ -111,9 +111,13 @@ extern int tc35892_set_bits(struct tc35892 *tc35892, u8 reg, u8 mask, u8 val);
* struct tc35892_gpio_platform_data - TC35892 GPIO platform data
* @gpio_base: first gpio number assigned to TC35892. A maximum of
* %TC35892_NR_GPIOS GPIOs will be allocated.
+ * @setup: callback for board-specific initialization
+ * @remove: callback for board-specific teardown
*/
struct tc35892_gpio_platform_data {
int gpio_base;
+ void (*setup)(struct tc35892 *tc35892, unsigned gpio_base);
+ void (*remove)(struct tc35892 *tc35892, unsigned gpio_base);
};
/**