]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/firewire/net.c
ps3_gelic: Don't kill the device on DMA failure
[karo-tx-linux.git] / drivers / firewire / net.c
index b9762d07198d3a6fb4383ebc3fcc60c17c4a17c0..eced1c25bf586c07114133d23454fd7a4ff9c395 100644 (file)
@@ -261,16 +261,16 @@ static int fwnet_header_rebuild(struct sk_buff *skb)
 }
 
 static int fwnet_header_cache(const struct neighbour *neigh,
-                             struct hh_cache *hh)
+                             struct hh_cache *hh, __be16 type)
 {
        struct net_device *net;
        struct fwnet_header *h;
 
-       if (hh->hh_type == cpu_to_be16(ETH_P_802_3))
+       if (type == cpu_to_be16(ETH_P_802_3))
                return -1;
        net = neigh->dev;
        h = (struct fwnet_header *)((u8 *)hh->hh_data + 16 - sizeof(*h));
-       h->h_proto = hh->hh_type;
+       h->h_proto = type;
        memcpy(h->h_dest, neigh->ha, net->addr_len);
        hh->hh_len = FWNET_HLEN;