diff options
author | Arnaldo Carvalho de Melo <acme@ghostprotocols.net> | 2005-04-24 21:53:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-24 21:53:06 -0400 |
commit | 56cb515628e6a831bb76783f282a71f7285dad33 (patch) | |
tree | ef7a70e6269eaf6f616066b6e1cd718a394d94bb /include/net/ax25.h | |
parent | 3b2d59d1fc86cc7217f165100a939907802dc67c (diff) |
[AX25] Introduce ax25_type_trans
Replacing the open coded equivalents and making ax25 look more like
a linux network protocol, i.e. more similar to inet.
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ax25.h')
-rw-r--r-- | include/net/ax25.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/ax25.h b/include/net/ax25.h index 875edbba396d..9e6368a54547 100644 --- a/include/net/ax25.h +++ b/include/net/ax25.h | |||
@@ -220,6 +220,14 @@ static __inline__ void ax25_cb_put(ax25_cb *ax25) | |||
220 | } | 220 | } |
221 | } | 221 | } |
222 | 222 | ||
223 | static inline unsigned short ax25_type_trans(struct sk_buff *skb, struct net_device *dev) | ||
224 | { | ||
225 | skb->dev = dev; | ||
226 | skb->pkt_type = PACKET_HOST; | ||
227 | skb->mac.raw = skb->data; | ||
228 | return htons(ETH_P_AX25); | ||
229 | } | ||
230 | |||
223 | /* af_ax25.c */ | 231 | /* af_ax25.c */ |
224 | extern struct hlist_head ax25_list; | 232 | extern struct hlist_head ax25_list; |
225 | extern spinlock_t ax25_list_lock; | 233 | extern spinlock_t ax25_list_lock; |