diff options
Diffstat (limited to 'drivers/isdn/hysdn/hysdn_net.c')
| -rw-r--r-- | drivers/isdn/hysdn/hysdn_net.c | 23 | 
1 files changed, 10 insertions, 13 deletions
diff --git a/drivers/isdn/hysdn/hysdn_net.c b/drivers/isdn/hysdn/hysdn_net.c index feec8d89d71..a0efb4cefa1 100644 --- a/drivers/isdn/hysdn/hysdn_net.c +++ b/drivers/isdn/hysdn/hysdn_net.c @@ -23,12 +23,9 @@  #include "hysdn_defs.h" -unsigned int hynet_enable = 0xffffffff;  +unsigned int hynet_enable = 0xffffffff;  module_param(hynet_enable, uint, 0); -/* store the actual version for log reporting */ -char *hysdn_net_revision = "$Revision: 1.8.6.4 $"; -  #define MAX_SKB_BUFFERS 20	/* number of buffers for keeping TX-data */  /****************************************************************************/ @@ -158,7 +155,7 @@ net_send_packet(struct sk_buff *skb, struct net_device *dev)  /* completion                                                          */  /***********************************************************************/  void -hysdn_tx_netack(hysdn_card * card) +hysdn_tx_netack(hysdn_card *card)  {  	struct net_local *lp = card->netif; @@ -184,7 +181,7 @@ hysdn_tx_netack(hysdn_card * card)  /* we got a packet from the network, go and queue it */  /*****************************************************/  void -hysdn_rx_netpkt(hysdn_card * card, unsigned char *buf, unsigned short len) +hysdn_rx_netpkt(hysdn_card *card, unsigned char *buf, unsigned short len)  {  	struct net_local *lp = card->netif;  	struct net_device *dev; @@ -218,7 +215,7 @@ hysdn_rx_netpkt(hysdn_card * card, unsigned char *buf, unsigned short len)  /* return the pointer to a network packet to be send */  /*****************************************************/  struct sk_buff * -hysdn_tx_netget(hysdn_card * card) +hysdn_tx_netget(hysdn_card *card)  {  	struct net_local *lp = card->netif; @@ -232,11 +229,11 @@ hysdn_tx_netget(hysdn_card * card)  }				/* hysdn_tx_netget */  static const struct net_device_ops hysdn_netdev_ops = { -	.ndo_open 		= net_open, +	.ndo_open		= net_open,  	.ndo_stop		= net_close,  	.ndo_start_xmit		= net_send_packet,  	.ndo_change_mtu		= eth_change_mtu, -	.ndo_set_mac_address 	= eth_mac_addr, +	.ndo_set_mac_address	= eth_mac_addr,  	.ndo_validate_addr	= eth_validate_addr,  }; @@ -247,13 +244,13 @@ static const struct net_device_ops hysdn_netdev_ops = {  /* 0 announces success, else a negative error code will be returned.         */  /*****************************************************************************/  int -hysdn_net_create(hysdn_card * card) +hysdn_net_create(hysdn_card *card)  {  	struct net_device *dev;  	int i;  	struct net_local *lp; -	if(!card) { +	if (!card) {  		printk(KERN_WARNING "No card-pt in hysdn_net_create!\n");  		return (-ENOMEM);  	} @@ -294,7 +291,7 @@ hysdn_net_create(hysdn_card * card)  /* value 0 announces success, else a negative error code will be returned. */  /***************************************************************************/  int -hysdn_net_release(hysdn_card * card) +hysdn_net_release(hysdn_card *card)  {  	struct net_device *dev = card->netif; @@ -319,7 +316,7 @@ hysdn_net_release(hysdn_card * card)  /* if the interface is not existing, a "-" is returned.                      */  /*****************************************************************************/  char * -hysdn_net_getname(hysdn_card * card) +hysdn_net_getname(hysdn_card *card)  {  	struct net_device *dev = card->netif;  | 
