diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-04 22:48:53 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-04 22:48:53 +0000 |
commit | 97d0bd90d2eac2c2fcc4f366e823429ea34e053c (patch) | |
tree | 618b4b87210016d31ae8a3c043e5ff3c44058530 /target/linux/lantiq/patches/104-board_xway.patch | |
parent | 7f398df47f7c891e2e0a7fb0f514672503047248 (diff) |
[lantiq]
* 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
Diffstat (limited to 'target/linux/lantiq/patches/104-board_xway.patch')
-rw-r--r-- | target/linux/lantiq/patches/104-board_xway.patch | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/target/linux/lantiq/patches/104-board_xway.patch b/target/linux/lantiq/patches/104-board_xway.patch index fcd9c0e326..ad434aa46b 100644 --- a/target/linux/lantiq/patches/104-board_xway.patch +++ b/target/linux/lantiq/patches/104-board_xway.patch @@ -615,7 +615,7 @@ +} --- /dev/null +++ b/arch/mips/lantiq/xway/devices.c -@@ -0,0 +1,305 @@ +@@ -0,0 +1,313 @@ +/* + * 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 @@ -787,10 +787,18 @@ + .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) +{ -+ platform_device_register_simple("lq_ebu", 0, &lq_ebu_resource, 1); ++ lq_ebu.dev.platform_data = (void*) value; ++ platform_device_register(&lq_ebu); +} + +/* ethernet */ |