diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-10-21 19:11:34 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-12-13 19:21:31 +0100 |
commit | 75b75722b4eb1032b3fe2e56b7015f23c6080529 (patch) | |
tree | 692c74cdb69aad40a04d9a16068581afcf8143c2 /include | |
parent | 53cf9a605d75877550c1b9793d7e994401d08eb7 (diff) | |
download | linux-3.10-75b75722b4eb1032b3fe2e56b7015f23c6080529.tar.gz linux-3.10-75b75722b4eb1032b3fe2e56b7015f23c6080529.tar.bz2 linux-3.10-75b75722b4eb1032b3fe2e56b7015f23c6080529.zip |
mfd: Allow platforms to specify an IRQ base for WM8350
This is currently unused by the wm8350 drivers but getting it merged
now will reduce merge issues in the future when implementing wm8350
genirq support.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/wm8350/core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index 32197fde904..ffce508a910 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h @@ -646,10 +646,12 @@ struct wm8350 { * @init: Function called during driver initialisation. Should be * used by the platform to configure GPIO functions and similar. * @irq_high: Set if WM8350 IRQ is active high. + * @irq_base: Base IRQ for genirq (not currently used). */ struct wm8350_platform_data { int (*init)(struct wm8350 *wm8350); int irq_high; + int irq_base; }; |