diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-04-17 15:11:44 +0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-04-17 15:11:44 +0400 |
commit | a6d377b6969235a3b5a6e87bdcef387d0976b41c (patch) | |
tree | 1c84b8182c8ef468c8b874361f4ae33aeafe50e7 /arch/sh/drivers/pci/ops-sh7785lcr.c | |
parent | 4c7a47de897e89c25a40e228ac5319cbac7257fe (diff) | |
download | linux-a6d377b6969235a3b5a6e87bdcef387d0976b41c.tar.xz |
sh: pci: Consolidate SH7780 PCIC IRQ routing.
Now that the platform code is a bit leaner, we can start consolidating
the various IRQ routing implementations. There are effectively only 2
variants, and the others can use those directly.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/ops-sh7785lcr.c')
-rw-r--r-- | arch/sh/drivers/pci/ops-sh7785lcr.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/arch/sh/drivers/pci/ops-sh7785lcr.c b/arch/sh/drivers/pci/ops-sh7785lcr.c deleted file mode 100644 index 0fe423e23508..000000000000 --- a/arch/sh/drivers/pci/ops-sh7785lcr.c +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Author: Ian DaSilva (idasilva@mvista.com) - * - * Highly leveraged from pci-bigsur.c, written by Dustin McIntire. - * - * May be copied or modified under the terms of the GNU General Public - * License. See linux/COPYING for more information. - * - * PCI initialization for the Renesas R0P7785LC0011RL board - * Based on arch/sh/drivers/pci/ops-r7780rp.c - * - */ -#include <linux/kernel.h> -#include <linux/types.h> -#include <linux/init.h> -#include <linux/delay.h> -#include <linux/pci.h> -#include "pci-sh4.h" - -static char irq_tab[] __initdata = { - 65, 66, 67, 68, -}; - -int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) -{ - return irq_tab[slot]; -} |