aboutsummaryrefslogtreecommitdiffstats
path: root/net/appletalk
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-04-11 00:21:55 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:26:20 -0400
commitb0e380b1d8a8e0aca215df97702f99815f05c094 (patch)
tree95f402ca155f5211150178811669ebf0a88e8e00 /net/appletalk
parentcfe1fc7759fdacb0c650b575daed1692bf3eaece (diff)
[SK_BUFF]: unions of just one member don't get anything done, kill them
Renaming skb->h to skb->transport_header, skb->nh to skb->network_header and skb->mac to skb->mac_header, to match the names of the associated helpers (skb[_[re]set]_{transport,network,mac}_header). Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/appletalk')
-rw-r--r--net/appletalk/ddp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/appletalk/ddp.c b/net/appletalk/ddp.c
index 137341b4d833..f6a92a0b7aa6 100644
--- a/net/appletalk/ddp.c
+++ b/net/appletalk/ddp.c
@@ -1383,10 +1383,10 @@ free_it:
1383 * @pt - packet type 1383 * @pt - packet type
1384 * 1384 *
1385 * Receive a packet (in skb) from device dev. This has come from the SNAP 1385 * Receive a packet (in skb) from device dev. This has come from the SNAP
1386 * decoder, and on entry skb->h.raw is the DDP header, skb->len is the DDP 1386 * decoder, and on entry skb->transport_header is the DDP header, skb->len
1387 * header, skb->len is the DDP length. The physical headers have been 1387 * is the DDP header, skb->len is the DDP length. The physical headers
1388 * extracted. PPP should probably pass frames marked as for this layer. 1388 * have been extracted. PPP should probably pass frames marked as for this
1389 * [ie ARPHRD_ETHERTALK] 1389 * layer. [ie ARPHRD_ETHERTALK]
1390 */ 1390 */
1391static int atalk_rcv(struct sk_buff *skb, struct net_device *dev, 1391static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
1392 struct packet_type *pt, struct net_device *orig_dev) 1392 struct packet_type *pt, struct net_device *orig_dev)