diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-05 09:51:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-12-05 09:51:25 +0000 |
commit | fff859a1f6a7a319053e4efce787b88bc76985ab (patch) | |
tree | 6ca955ea78af5b99d8ac17e57747b6a1e69027d5 /target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch | |
parent | ba0ba1e1f5b403e83a8cbdd90ba065e626318e30 (diff) | |
download | upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.tar.gz upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.tar.bz2 upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.zip |
lantiq: remove 3.18 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 47774
Diffstat (limited to 'target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch b/target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch deleted file mode 100644 index 26a3a65142..0000000000 --- a/target/linux/lantiq/patches-3.18/0151-lantiq-ifxmips_pcie-use-of.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- a/arch/mips/pci/ifxmips_pcie.c -+++ b/arch/mips/pci/ifxmips_pcie.c -@@ -18,6 +18,8 @@ - #include <linux/pci_regs.h> - #include <linux/module.h> - -+#include <linux/of_platform.h> -+ - #include "ifxmips_pcie.h" - #include "ifxmips_pcie_reg.h" - -@@ -1045,7 +1047,7 @@ pcie_rc_initialize(int pcie_port) - return 0; - } - --static int __init ifx_pcie_bios_init(void) -+static int __init ifx_pcie_bios_probe(struct platform_device *pdev) - { - void __iomem *io_map_base; - int pcie_port; -@@ -1083,6 +1085,30 @@ static int __init ifx_pcie_bios_init(voi - - return 0; - } -+ -+static const struct of_device_id ifxmips_pcie_match[] = { -+ { .compatible = "lantiq,pcie-xrx200" }, -+ {}, -+}; -+MODULE_DEVICE_TABLE(of, ifxmips_pcie_match); -+ -+static struct platform_driver ltq_pci_driver = { -+ .probe = ifx_pcie_bios_probe, -+ .driver = { -+ .name = "pcie-xrx200", -+ .owner = THIS_MODULE, -+ .of_match_table = ifxmips_pcie_match, -+ }, -+}; -+ -+int __init ifx_pcie_bios_init(void) -+{ -+ int ret = platform_driver_register(<q_pci_driver); -+ if (ret) -+ pr_info("pcie-xrx200: Error registering platform driver!"); -+ return ret; -+} -+ - arch_initcall(ifx_pcie_bios_init); - - MODULE_LICENSE("GPL"); |