From 451089be3aca7436f86ada90a39e450dc4ad7874 Mon Sep 17 00:00:00 2001 From: kaloz Date: Sat, 12 Jul 2008 02:02:58 +0000 Subject: nuke most of the old ixp4xx patchsets git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11778 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches-2.6.23/300-avila_fetch_mac.patch | 72 ---------------------- 1 file changed, 72 deletions(-) delete mode 100644 target/linux/ixp4xx/patches-2.6.23/300-avila_fetch_mac.patch (limited to 'target/linux/ixp4xx/patches-2.6.23/300-avila_fetch_mac.patch') diff --git a/target/linux/ixp4xx/patches-2.6.23/300-avila_fetch_mac.patch b/target/linux/ixp4xx/patches-2.6.23/300-avila_fetch_mac.patch deleted file mode 100644 index 7303399e5..000000000 --- a/target/linux/ixp4xx/patches-2.6.23/300-avila_fetch_mac.patch +++ /dev/null @@ -1,72 +0,0 @@ -Index: linux-2.6.23.17/arch/arm/mach-ixp4xx/avila-setup.c -=================================================================== ---- linux-2.6.23.17.orig/arch/arm/mach-ixp4xx/avila-setup.c -+++ linux-2.6.23.17/arch/arm/mach-ixp4xx/avila-setup.c -@@ -14,10 +14,18 @@ - #include - #include - #include -+#include -+#include -+#include - #include - #include - #include - #include -+#ifdef CONFIG_SENSORS_EEPROM -+# include -+# include -+#endif -+ - #include - - #include -@@ -194,9 +202,48 @@ static void __init avila_fixup(struct ma - t->hdr.size = 0; - } - -+#ifdef CONFIG_SENSORS_EEPROM -+static int loft_eeprom_do(struct notifier_block *self, unsigned long event, void *t) -+{ -+ struct eeprom_data *data = t; -+ struct sockaddr address; -+ struct net_device * netdev ; -+ -+ char macs[12]; -+ -+ /* The MACs are the first 12 bytes in the eeprom at address 0x51 */ -+ if (event == EEPROM_REGISTER && data->client.addr == 0x51) { -+ data->attr->read(&data->client.dev.kobj, data->attr, macs, 0, 12); -+ /*eth0*/ -+ /* using dev_get_by_name here is really ugly and can cause -+ * confusion if other ethernet devices are present. FIXME */ -+ -+ memcpy(address.sa_data, macs, ETH_ALEN); -+ memcpy(&avila_plat_eth[0].hwaddr, macs, ETH_ALEN); -+ if ( (netdev = dev_get_by_name("eth0")) ) -+ netdev->set_mac_address(netdev, &address); -+ -+ /*same for eth1*/ -+ memcpy(address.sa_data, macs + ETH_ALEN, ETH_ALEN); -+ memcpy(&avila_plat_eth[1].hwaddr, macs + ETH_ALEN, ETH_ALEN); -+ if ( (netdev = dev_get_by_name("eth1")) ) -+ netdev->set_mac_address(netdev, &address); -+ } -+ -+ return NOTIFY_DONE; -+} -+ -+static struct notifier_block loft_eeprom_notifier = { -+ .notifier_call = loft_eeprom_do -+}; -+#endif -+ - static void __init avila_init(void) - { - ixp4xx_sys_init(); -+#ifdef CONFIG_SENSORS_EEPROM -+ register_eeprom_notifier(&loft_eeprom_notifier); -+#endif - - avila_flash_resource.start = IXP4XX_EXP_BUS_BASE(0); - avila_flash_resource.end = -- cgit v1.2.3