aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/net
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-03-10 11:13:59 -0300
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:24:27 -0700
commit4839fccea04b5f4d2b3ce01585d6bdbcbc24002c (patch)
treec59de4416fb133f615f8c08864c8d5d0336ad317 /drivers/s390/net
parent[HIPPI/FDDI]: Make {hippi,fddi}_type_trans set skb->dev (diff)
downloadlinux-dev-4839fccea04b5f4d2b3ce01585d6bdbcbc24002c.tar.xz
linux-dev-4839fccea04b5f4d2b3ce01585d6bdbcbc24002c.zip
[QETH]: Use eth_hdr()
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net')
-rw-r--r--drivers/s390/net/qeth_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c
index f2b9b1b1ec10..d502b77adf6b 100644
--- a/drivers/s390/net/qeth_main.c
+++ b/drivers/s390/net/qeth_main.c
@@ -2361,7 +2361,7 @@ qeth_rebuild_skb_fake_ll_eth(struct qeth_card *card, struct sk_buff *skb,
QETH_DBF_TEXT(trace,5,"skbfketh");
skb->mac.raw = skb->data - QETH_FAKE_LL_LEN_ETH;
/* this is a fake ethernet header */
- fake_hdr = (struct ethhdr *) skb->mac.raw;
+ fake_hdr = eth_hdr(skb);
/* the destination MAC address */
switch (skb->pkt_type){