aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-01-25 13:33:34 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-01-25 13:33:34 +0000
commitb2a0bf45296d6debf0be32dc21ff41b2c5efe0e7 (patch)
tree2c1444f90a321c2c824de16d583e21ebbc41786e /package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch
parent21ba780a95bfe75069f363a3a70211c4f8ec8aff (diff)
downloadmaster-187ad058-b2a0bf45296d6debf0be32dc21ff41b2c5efe0e7.tar.gz
master-187ad058-b2a0bf45296d6debf0be32dc21ff41b2c5efe0e7.tar.bz2
master-187ad058-b2a0bf45296d6debf0be32dc21ff41b2c5efe0e7.zip
[package] mac80211: update compat-wireless to 2009-01-24 (patch by Hauke Mehrtens <hauke@hauke-m.de>)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14172 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch')
-rw-r--r--package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch b/package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch
deleted file mode 100644
index 0a14d9fa5b..0000000000
--- a/package/mac80211/patches/325-rt2x00-rt2x00_rev-should-return-u32.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 3dc31edfe4bad6048f097cd4a088499500db9a2e Mon Sep 17 00:00:00 2001
-From: Ivo van Doorn <IvDoorn@gmail.com>
-Date: Thu, 22 Jan 2009 21:01:56 +0100
-Subject: [PATCH] rt2x00: rt2x00_rev() should return u32
-
-The "rev" field in chipset definition is an u32,
-which means that rt2x00_rev() which returns that field
-should be of the same type.
-
-Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
----
- drivers/net/wireless/rt2x00/rt2x00.h | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
---- a/drivers/net/wireless/rt2x00/rt2x00.h
-+++ b/drivers/net/wireless/rt2x00/rt2x00.h
-@@ -878,7 +878,7 @@ static inline char rt2x00_rf(const struc
- return (chipset->rf == chip);
- }
-
--static inline u16 rt2x00_rev(const struct rt2x00_chip *chipset)
-+static inline u32 rt2x00_rev(const struct rt2x00_chip *chipset)
- {
- return chipset->rev;
- }