[HAMRADIO]: driver cleanups
Misc related cleanups in hamradio drivers: o Use symbolic constants instead of magic numbers o Don't try to handle the case where AX.25 isn't configured - the kernel configuration doesn't permit that. o Remove useless headers Signed-off-by: Ralf Baechle DL5RB <ralf@linux-mips.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
59c2353dd0
commit
c4bc7ee2e4
@@ -449,12 +449,12 @@ module_exit(dmascc_exit);
|
||||
static void dev_setup(struct net_device *dev)
|
||||
{
|
||||
dev->type = ARPHRD_AX25;
|
||||
dev->hard_header_len = 73;
|
||||
dev->hard_header_len = AX25_MAX_HEADER_LEN;
|
||||
dev->mtu = 1500;
|
||||
dev->addr_len = 7;
|
||||
dev->addr_len = AX25_ADDR_LEN;
|
||||
dev->tx_queue_len = 64;
|
||||
memcpy(dev->broadcast, ax25_broadcast, 7);
|
||||
memcpy(dev->dev_addr, ax25_test, 7);
|
||||
memcpy(dev->broadcast, ax25_broadcast, AX25_ADDR_LEN);
|
||||
memcpy(dev->dev_addr, ax25_test, AX25_ADDR_LEN);
|
||||
}
|
||||
|
||||
static int __init setup_adapter(int card_base, int type, int n)
|
||||
|
Reference in New Issue
Block a user