diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2015-05-20 17:59:52 +0800 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-06-02 16:54:44 +1000 |
commit | c1231a784acc25ec01d35a019533da9ab8593e2e (patch) | |
tree | 29bfc8fe46b3243a64a3b76f806f7f1f4523e227 /arch/powerpc/sysdev/uic.c | |
parent | d20be433e6a8892ecf59ef62636cd1333975347d (diff) | |
download | lwn-c1231a784acc25ec01d35a019533da9ab8593e2e.tar.gz lwn-c1231a784acc25ec01d35a019533da9ab8593e2e.zip |
powerpc: 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.
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/sysdev/uic.c')
-rw-r--r-- | arch/powerpc/sysdev/uic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/uic.c b/arch/powerpc/sysdev/uic.c index 1cd057f11725..d77345338671 100644 --- a/arch/powerpc/sysdev/uic.c +++ b/arch/powerpc/sysdev/uic.c @@ -198,7 +198,7 @@ void uic_irq_cascade(unsigned int virq, struct irq_desc *desc) { struct irq_chip *chip = irq_desc_get_chip(desc); struct irq_data *idata = irq_desc_get_irq_data(desc); - struct uic *uic = irq_get_handler_data(virq); + struct uic *uic = irq_desc_get_handler_data(desc); u32 msr; int src; int subvirq; |