From 4b605fd6fa8f4d84b539f0b9008fc2c44db0292f Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 3 Apr 2013 10:00:29 +0000 Subject: [mac80211] several patches to make OF work on rt2x00 Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36178 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../614-rt2x00-of_load_eeprom_filename.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package/mac80211/patches/614-rt2x00-of_load_eeprom_filename.patch (limited to 'package/mac80211/patches/614-rt2x00-of_load_eeprom_filename.patch') diff --git a/package/mac80211/patches/614-rt2x00-of_load_eeprom_filename.patch b/package/mac80211/patches/614-rt2x00-of_load_eeprom_filename.patch new file mode 100644 index 0000000000..136bd84431 --- /dev/null +++ b/package/mac80211/patches/614-rt2x00-of_load_eeprom_filename.patch @@ -0,0 +1,22 @@ +Index: compat-wireless-2013-02-22/drivers/net/wireless/rt2x00/rt2800pci.c +=================================================================== +--- compat-wireless-2013-02-22.orig/drivers/net/wireless/rt2x00/rt2800pci.c 2013-03-31 19:27:59.805818237 +0200 ++++ compat-wireless-2013-02-22/drivers/net/wireless/rt2x00/rt2800pci.c 2013-03-31 19:40:07.313835573 +0200 +@@ -322,11 +322,17 @@ + static char *rt2800pci_get_eeprom_file_name(struct rt2x00_dev *rt2x00dev) + { + struct rt2x00_platform_data *pdata; ++ struct device_node *np; ++ char *eep; + + pdata = rt2x00dev->dev->platform_data; + if (pdata) + return pdata->eeprom_file_name; + ++ np = rt2x00dev->dev->of_node; ++ if (np && !of_property_read_string(np, "ralink,eeprom", &eep)) ++ return eep; ++ + return NULL; + } + -- cgit v1.2.3