diff options
| author | Thomas Gleixner <[email protected]> | 2010-09-28 14:46:51 +0000 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2010-10-12 14:53:34 +0000 |
| commit | 1c9db52534a2c0e9776788cd34ccc193289fc18c (patch) | |
| tree | 5cca6ab7d72bee784c425879a5f17b4c6fe1c5d8 /arch/powerpc/sysdev/fsl_msi.c | |
| parent | Merge branch 'x86/urgent' of into irq/sparseirq (diff) | |
| download | kernel-1c9db52534a2c0e9776788cd34ccc193289fc18c.tar.gz kernel-1c9db52534a2c0e9776788cd34ccc193289fc18c.zip | |
pci: Convert msi to new irq_chip functions
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Ingo Molnar <[email protected]>
Acked-by: Jesse Barnes <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: Russell King <[email protected]>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_msi.c')
| -rw-r--r-- | arch/powerpc/sysdev/fsl_msi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c index 87991d3abbab..bdbd896c89d8 100644 --- a/arch/powerpc/sysdev/fsl_msi.c +++ b/arch/powerpc/sysdev/fsl_msi.c @@ -51,8 +51,8 @@ static void fsl_msi_end_irq(unsigned int virq) } static struct irq_chip fsl_msi_chip = { - .mask = mask_msi_irq, - .unmask = unmask_msi_irq, + .irq_mask = mask_msi_irq, + .irq_unmask = unmask_msi_irq, .ack = fsl_msi_end_irq, .name = "FSL-MSI", }; |
