make ifxmips mii0 a platform device

SVN-Revision: 9923
This commit is contained in:
John Crispin
2007-12-25 12:38:15 +00:00
parent 1fa388162b
commit c09f909556
2 changed files with 55 additions and 19 deletions

View File

@@ -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);
}