]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[NET]: Fix yam.c
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 26 Apr 2007 07:55:53 +0000 (00:55 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 Apr 2007 07:55:53 +0000 (00:55 -0700)
drivers/net/hamradio/yam.c: In function `yam_tx_byte':
drivers/net/hamradio/yam.c:643: warning: passing arg 1 of `skb_copy_from_linear_data_offset' from incompatible pointer type

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hamradio/yam.c

index ac2d6dd9dbe4ca18ff38ee3e4b4fa3d84db7d586..467559debfd68a6bb2e93c9e758ea1f1707bcf72 100644 (file)
@@ -638,7 +638,7 @@ static void yam_tx_byte(struct net_device *dev, struct yam_port *yp)
                                dev_kfree_skb_any(skb);
                                break;
                        }
-                       skb_copy_from_linear_data_offset(skb->data, 1,
+                       skb_copy_from_linear_data_offset(skb, 1,
                                                         yp->tx_buf,
                                                         yp->tx_len);
                        dev_kfree_skb_any(skb);