summaryrefslogtreecommitdiff
path: root/community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch')
-rw-r--r--community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch b/community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
new file mode 100644
index 000000000..a53dbde86
--- /dev/null
+++ b/community/rt3562sta/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
@@ -0,0 +1,14 @@
+--- os/linux/rt_linux.c.orig 2010-11-26 04:18:41.000000000 +0100
++++ os/linux/rt_linux.c 2010-12-01 14:57:53.000000000 +0100
+@@ -479,9 +479,9 @@
+ MEM_DBG_PKT_ALLOC_INC(pAd);
+
+ skb_reserve(skb, 2);
+- NdisMoveMemory(skb->tail, pHeader802_3, HdrLen);
++ NdisMoveMemory(skb_tail_pointer(skb), pHeader802_3, HdrLen); //
+ skb_put(skb, HdrLen);
+- NdisMoveMemory(skb->tail, pData, DataSize);
++ NdisMoveMemory(skb_tail_pointer(skb), pData, DataSize); //
+ skb_put(skb, DataSize);
+ skb->dev = get_netdev_from_bssid(pAd, FromWhichBSSID);
+ pPacket = OSPKT_TO_RTPKT(skb);