diff options
author | Alan Cox <alan@linux.intel.com> | 2009-11-17 10:48:47 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-12-13 13:21:45 -0500 |
commit | 89f5f9f79e5b3caae3e39832774f0f909c18ec5e (patch) | |
tree | 0cf943b406c4d55b783e85e1c6136da2e7962a5c /drivers/mfd/twl4030-irq.c | |
parent | dc0fb25c14e37f2ab843c2901743222f2be7f447 (diff) |
mfd: Fix twl4030 warning
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/twl4030-irq.c')
-rw-r--r-- | drivers/mfd/twl4030-irq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c index 0b733028828f..3f7e93ca0514 100644 --- a/drivers/mfd/twl4030-irq.c +++ b/drivers/mfd/twl4030-irq.c | |||
@@ -838,7 +838,8 @@ int twl_init_irq(int irq_num, unsigned irq_base, unsigned irq_end) | |||
838 | goto fail_rqirq; | 838 | goto fail_rqirq; |
839 | } | 839 | } |
840 | 840 | ||
841 | task = kthread_run(twl4030_irq_thread, (void *)irq_num, "twl4030-irq"); | 841 | task = kthread_run(twl4030_irq_thread, (void *)(long)irq_num, |
842 | "twl4030-irq"); | ||
842 | if (IS_ERR(task)) { | 843 | if (IS_ERR(task)) { |
843 | pr_err("twl4030: could not create irq %d thread!\n", irq_num); | 844 | pr_err("twl4030: could not create irq %d thread!\n", irq_num); |
844 | status = PTR_ERR(task); | 845 | status = PTR_ERR(task); |