[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 ac2d6dd..467559d 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);