diff options
author | John Crispin <blogic@openwrt.org> | 2007-12-25 12:38:15 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2007-12-25 12:38:15 +0000 |
commit | 04cf6dcd665b6b8bd0b2910aeb6ce1bf5417ea70 (patch) | |
tree | 7a199249bd18457f336883e455910827513673ec /target/linux/ifxmips/files/arch/mips | |
parent | 065f8f9a1f861a12f8276b3c891aef3d239ab948 (diff) | |
download | master-187ad058-04cf6dcd665b6b8bd0b2910aeb6ce1bf5417ea70.tar.gz master-187ad058-04cf6dcd665b6b8bd0b2910aeb6ce1bf5417ea70.tar.bz2 master-187ad058-04cf6dcd665b6b8bd0b2910aeb6ce1bf5417ea70.zip |
make ifxmips mii0 a platform device
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9923 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ifxmips/files/arch/mips')
-rw-r--r-- | target/linux/ifxmips/files/arch/mips/ifxmips/board.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c index 8f3e166eb2..6df17d8556 100644 --- a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c +++ b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c @@ -25,9 +25,9 @@ #include <linux/types.h> #include <linux/string.h> #include <linux/mtd/physmap.h> -#include <linux/platform_device.h> #include <linux/kernel.h> #include <linux/reboot.h> +#include <linux/platform_device.h> #include <asm/bootinfo.h> #include <asm/reboot.h> #include <asm/time.h> @@ -54,6 +54,14 @@ static struct platform_device ifxmips_gpio[] = }, }; +static struct platform_device ifxmips_mii[] = +{ + { + .id = 0, + .name = "ifxmips_mii0", + }, +}; + int __init ifxmips_init_devices(void) { /* @@ -70,6 +78,7 @@ int __init ifxmips_init_devices(void) ifxmips_devs[dev++] = ifxmips_led; ifxmips_devs[dev++] = ifxmips_gpio; + ifxmips_devs[dev++] = ifxmips_mii; return platform_add_devices(ifxmips_devs, dev); } |