blob: 72277d70c980be38035f11bc7aae0a1be46b8398 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Moved here from drivers/net/net_init.c, which is:
3 * Written 1993,1994,1995 by Donald Becker.
4 */
5
6#include <linux/errno.h>
7#include <linux/module.h>
8#include <linux/netdevice.h>
9#include <linux/if_arp.h>
10#include <linux/if_ltalk.h>
11
Stephen Hemminger60961ce2009-01-09 13:01:07 +000012#ifdef CONFIG_COMPAT_NET_DEV_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -070013static int ltalk_change_mtu(struct net_device *dev, int mtu)
14{
15 return -EINVAL;
16}
Stephen Hemminger60961ce2009-01-09 13:01:07 +000017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Christoph Hellwig3ef4e9a2005-05-05 14:25:59 -070019static void ltalk_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
21 /* Fill in the fields of the device structure with localtalk-generic values. */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090022
Stephen Hemminger60961ce2009-01-09 13:01:07 +000023#ifdef CONFIG_COMPAT_NET_DEV_OPS
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 dev->change_mtu = ltalk_change_mtu;
Stephen Hemminger60961ce2009-01-09 13:01:07 +000025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27 dev->type = ARPHRD_LOCALTLK;
28 dev->hard_header_len = LTALK_HLEN;
29 dev->mtu = LTALK_MTU;
30 dev->addr_len = LTALK_ALEN;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090031 dev->tx_queue_len = 10;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 dev->broadcast[0] = 0xFF;
34
35 dev->flags = IFF_BROADCAST|IFF_MULTICAST|IFF_NOARP;
36}
Christoph Hellwig3ef4e9a2005-05-05 14:25:59 -070037
38/**
39 * alloc_ltalkdev - Allocates and sets up an localtalk device
40 * @sizeof_priv: Size of additional driver-private structure to be allocated
41 * for this localtalk device
42 *
43 * Fill in the fields of the device structure with localtalk-generic
44 * values. Basically does everything except registering the device.
45 *
46 * Constructs a new net device, complete with a private data area of
47 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
48 * this private data area.
49 */
50
51struct net_device *alloc_ltalkdev(int sizeof_priv)
52{
53 return alloc_netdev(sizeof_priv, "lt%d", ltalk_setup);
54}
55EXPORT_SYMBOL(alloc_ltalkdev);