mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 00:29:41 +02:00
0fc3447849
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11204 3c298f89-4303-0410-b956-a3cf2f4a3e73
30 lines
831 B
Diff
30 lines
831 B
Diff
Index: linux-2.6.21.7/arch/arm/mach-ixp4xx/avila-setup.c
|
|
===================================================================
|
|
--- linux-2.6.21.7.orig/arch/arm/mach-ixp4xx/avila-setup.c
|
|
+++ linux-2.6.21.7/arch/arm/mach-ixp4xx/avila-setup.c
|
|
@@ -183,13 +183,23 @@ static struct platform_device mac1 = {
|
|
.resource = &res_mac1,
|
|
};
|
|
|
|
+struct npe_ucode_platform_data avila_npe_ucode_data = {
|
|
+ .mtd_partition = "RedBoot",
|
|
+};
|
|
+
|
|
+static struct platform_device avila_npe_ucode = {
|
|
+ .name = "ixp4xx_npe_ucode",
|
|
+ .id = 0,
|
|
+ .dev.platform_data = &avila_npe_ucode_data,
|
|
+};
|
|
+
|
|
static struct platform_device *avila_devices[] __initdata = {
|
|
&avila_i2c_controller,
|
|
&avila_flash,
|
|
&avila_uart,
|
|
&mac0,
|
|
&mac1,
|
|
-
|
|
+ &avila_npe_ucode,
|
|
};
|
|
|
|
#ifdef CONFIG_SENSORS_EEPROM
|