diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2015-07-13 20:44:56 (GMT) |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-08-11 14:09:06 (GMT) |
commit | 1e84aa445893a608445af2fda5d8a03c0a86af84 (patch) | |
tree | 67f985987b744362b781cfab26e97f9d9a64fd13 /drivers/mfd/t7l66xb.c | |
parent | 079140f5cee9d8e0290de12ac1bf74f1ebe72881 (diff) | |
download | linux-1e84aa445893a608445af2fda5d8a03c0a86af84.tar.xz |
mfd: Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc
Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc while we
already have a pointer to corresponding irq_desc.
Do the same change to avoid the pattern "irq_get_chip_data(data->irq)".
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/t7l66xb.c')
-rw-r--r-- | drivers/mfd/t7l66xb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/t7l66xb.c b/drivers/mfd/t7l66xb.c index cc28103..16fc1ad 100644 --- a/drivers/mfd/t7l66xb.c +++ b/drivers/mfd/t7l66xb.c @@ -187,7 +187,7 @@ static struct mfd_cell t7l66xb_cells[] = { /* Handle the T7L66XB interrupt mux */ static void t7l66xb_irq(unsigned int irq, struct irq_desc *desc) { - struct t7l66xb *t7l66xb = irq_get_handler_data(irq); + struct t7l66xb *t7l66xb = irq_desc_get_handler_data(desc); unsigned int isr; unsigned int i, irq_base; |