diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-03-25 14:18:32 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-03-25 14:18:32 +0000 |
commit | d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30 (patch) | |
tree | 434d439eed20bfad339ef72cac047972faaad579 /target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch | |
parent | 88c5f2bfbda358cf0c0a9a8da6c92cbe285ed53d (diff) | |
download | upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.tar.gz upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.tar.bz2 upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.zip |
[gemini]: upgrade to 3.9-rc4, disable unsupported boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36128 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch')
-rw-r--r-- | target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch b/target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch deleted file mode 100644 index 14be011452..0000000000 --- a/target/linux/gemini/patches-3.8/124-arm-gemini-rut100-register-ethernet.patch +++ /dev/null @@ -1,47 +0,0 @@ ---- a/arch/arm/mach-gemini/board-rut1xx.c -+++ b/arch/arm/mach-gemini/board-rut1xx.c -@@ -15,13 +15,35 @@ - #include <linux/input.h> - #include <linux/gpio_keys.h> - #include <linux/sizes.h> -+#include <linux/mdio-gpio.h> - - #include <asm/mach-types.h> - #include <asm/mach/arch.h> - #include <asm/mach/time.h> - -+#include <mach/gmac.h> -+ - #include "common.h" - -+static struct mdio_gpio_platform_data rut1xx_mdio = { -+ .mdc = 22, -+ .mdio = 21, -+ .phy_mask = ~(1 << 1), -+}; -+ -+static struct platform_device rut1xx_phy_device = { -+ .name = "mdio-gpio", -+ .id = 0, -+ .dev = { -+ .platform_data = &rut1xx_mdio, -+ }, -+}; -+ -+static struct gemini_gmac_platform_data gmac_data = { -+ .bus_id[0] = "gpio-0:01", -+ .interface[0] = PHY_INTERFACE_MODE_MII, -+}; -+ - static struct gpio_keys_button rut1xx_keys[] = { - { - .code = KEY_SETUP, -@@ -85,6 +107,8 @@ static void __init rut1xx_init(void) - platform_device_register(&rut1xx_keys_device); - platform_register_rtc(); - platform_register_watchdog(); -+ platform_device_register(&rut1xx_phy_device); -+ platform_register_ethernet(&gmac_data); - } - - MACHINE_START(RUT100, "Teltonika RUT100") |