diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-24 18:01:39 +0000 |
---|---|---|
committer | AK <andi@firstfloor.org> | 2011-02-06 11:03:49 -0800 |
commit | 87e27023b169b23410b59e24e579d8d9d55136a8 (patch) | |
tree | c9f4db1a6c938af8ca534125dab60c9c7a2a6803 | |
parent | 848d070ae77a340275678ce27fde5c831e299e64 (diff) | |
download | lwn-87e27023b169b23410b59e24e579d8d9d55136a8.tar.gz lwn-87e27023b169b23410b59e24e579d8d9d55136a8.zip |
mfd: Supply IRQ base for WM832x devices
commit bd7c72ed18d719c1fb0fdf6ff9042d8ab78fdf71 upstream.
Without this the IRQ base will not be correctly configured for the
subdevices.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
-rw-r--r-- | drivers/mfd/wm831x-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/wm831x-core.c b/drivers/mfd/wm831x-core.c index 8d7182e24985..0f8757259d17 100644 --- a/drivers/mfd/wm831x-core.c +++ b/drivers/mfd/wm831x-core.c @@ -1608,7 +1608,7 @@ static int wm831x_device_init(struct wm831x *wm831x, unsigned long id, int irq) case WM8320: ret = mfd_add_devices(wm831x->dev, -1, wm8320_devs, ARRAY_SIZE(wm8320_devs), - NULL, 0); + NULL, wm831x->irq_base); break; default: |