summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/bssdb.c
diff options
context:
space:
mode:
authorJim Lieb2009-07-24 02:20:49 +0200
committerGreg Kroah-Hartman2009-09-15 21:02:06 +0200
commitdb6cb9036b2756c50efc43127c476786ea92eae2 (patch)
tree0891c0db88bc31edddf31f92f2037bca0922939d /drivers/staging/vt6655/bssdb.c
parentStaging: otus: includecheck fix: drivers/staging/otus/usbdrv.h (diff)
downloadkernel-qcow2-linux-db6cb9036b2756c50efc43127c476786ea92eae2.tar.gz
kernel-qcow2-linux-db6cb9036b2756c50efc43127c476786ea92eae2.tar.xz
kernel-qcow2-linux-db6cb9036b2756c50efc43127c476786ea92eae2.zip
Staging: vt665x: 64bit compile fixes Part 1
Fix compile problems with 64bit. These issues could cause corrupted address crashes. In the process, replaced some definitions to use more portable kernel types. Signed-off-by: Jim Lieb <lieb@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6655/bssdb.c')
-rw-r--r--drivers/staging/vt6655/bssdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/bssdb.c b/drivers/staging/vt6655/bssdb.c
index 746fadcffe8a..6eb0798d58d8 100644
--- a/drivers/staging/vt6655/bssdb.c
+++ b/drivers/staging/vt6655/bssdb.c
@@ -1335,7 +1335,7 @@ start:
wpahdr->req_ie_len = 0;
skb_put(pDevice->skb, sizeof(viawget_wpa_header));
pDevice->skb->dev = pDevice->wpadev;
- pDevice->skb->mac_header = pDevice->skb->data;
+ skb_reset_mac_header(pDevice->skb);
pDevice->skb->pkt_type = PACKET_HOST;
pDevice->skb->protocol = htons(ETH_P_802_2);
memset(pDevice->skb->cb, 0, sizeof(pDevice->skb->cb));