blob: 284c8e585533a2297b0fa9bf0196c3396d4210f1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Moved here from drivers/net/net_init.c, which is:
4 * Written 1993,1994,1995 by Donald Becker.
5 */
6
7#include <linux/errno.h>
8#include <linux/module.h>
9#include <linux/netdevice.h>
10#include <linux/if_arp.h>
11#include <linux/if_ltalk.h>
12
Christoph Hellwig3ef4e9a2005-05-05 14:25:59 -070013static void ltalk_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
15 /* Fill in the fields of the device structure with localtalk-generic values. */
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 dev->type = ARPHRD_LOCALTLK;
18 dev->hard_header_len = LTALK_HLEN;
19 dev->mtu = LTALK_MTU;
20 dev->addr_len = LTALK_ALEN;
YOSHIFUJI Hideakied4477b2007-02-09 23:24:27 +090021 dev->tx_queue_len = 10;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 dev->broadcast[0] = 0xFF;
24
25 dev->flags = IFF_BROADCAST|IFF_MULTICAST|IFF_NOARP;
26}
Christoph Hellwig3ef4e9a2005-05-05 14:25:59 -070027
28/**
29 * alloc_ltalkdev - Allocates and sets up an localtalk device
30 * @sizeof_priv: Size of additional driver-private structure to be allocated
31 * for this localtalk device
32 *
33 * Fill in the fields of the device structure with localtalk-generic
34 * values. Basically does everything except registering the device.
35 *
36 * Constructs a new net device, complete with a private data area of
37 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
38 * this private data area.
39 */
40
41struct net_device *alloc_ltalkdev(int sizeof_priv)
42{
Tom Gundersenc835a672014-07-14 16:37:24 +020043 return alloc_netdev(sizeof_priv, "lt%d", NET_NAME_UNKNOWN,
44 ltalk_setup);
Christoph Hellwig3ef4e9a2005-05-05 14:25:59 -070045}
46EXPORT_SYMBOL(alloc_ltalkdev);