* fixes old ifxmips in header file
* pass default ebu value to gpio driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25366
3c298f89-4303-0410-b956-
a3cf2f4a3e73
-+extern int (*ifxmips_pci_plat_dev_init)(struct pci_dev *dev);
++extern int (*lqpci_plat_dev_init)(struct pci_dev *dev);
+}
--- /dev/null
+++ b/arch/mips/lantiq/xway/devices.c
+}
--- /dev/null
+++ b/arch/mips/lantiq/xway/devices.c
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ .flags = IORESOURCE_MEM,
+};
+
+ .flags = IORESOURCE_MEM,
+};
+
++static struct platform_device lq_ebu =
++{
++ .name = "lq_ebu",
++ .resource = &lq_ebu_resource,
++ .num_resources = 1,
++};
++
+void __init
+lq_register_gpio_ebu(unsigned int value)
+{
+void __init
+lq_register_gpio_ebu(unsigned int value)
+{
-+ platform_device_register_simple("lq_ebu", 0, &lq_ebu_resource, 1);
++ lq_ebu.dev.platform_data = (void*) value;
++ platform_device_register(&lq_ebu);