diff options
Diffstat (limited to 'drivers/isdn/hysdn/hysdn_sched.c')
| -rw-r--r-- | drivers/isdn/hysdn/hysdn_sched.c | 52 | 
1 files changed, 26 insertions, 26 deletions
diff --git a/drivers/isdn/hysdn/hysdn_sched.c b/drivers/isdn/hysdn/hysdn_sched.c index 3674d30d6a0..31d7c141554 100644 --- a/drivers/isdn/hysdn/hysdn_sched.c +++ b/drivers/isdn/hysdn/hysdn_sched.c @@ -29,33 +29,33 @@  /*****************************************************************************/  int  hysdn_sched_rx(hysdn_card *card, unsigned char *buf, unsigned short len, -			unsigned short chan) +	       unsigned short chan)  {  	switch (chan) { -		case CHAN_NDIS_DATA: -			if (hynet_enable & (1 << card->myid)) { -                          /* give packet to network handler */ -				hysdn_rx_netpkt(card, buf, len); -			} -			break; +	case CHAN_NDIS_DATA: +		if (hynet_enable & (1 << card->myid)) { +			/* give packet to network handler */ +			hysdn_rx_netpkt(card, buf, len); +		} +		break; -		case CHAN_ERRLOG: -			hysdn_card_errlog(card, (tErrLogEntry *) buf, len); -			if (card->err_log_state == ERRLOG_STATE_ON) -				card->err_log_state = ERRLOG_STATE_START;	/* start new fetch */ -			break; +	case CHAN_ERRLOG: +		hysdn_card_errlog(card, (tErrLogEntry *) buf, len); +		if (card->err_log_state == ERRLOG_STATE_ON) +			card->err_log_state = ERRLOG_STATE_START;	/* start new fetch */ +		break;  #ifdef CONFIG_HYSDN_CAPI -         	case CHAN_CAPI: +	case CHAN_CAPI:  /* give packet to CAPI handler */ -			if (hycapi_enable & (1 << card->myid)) { -				hycapi_rx_capipkt(card, buf, len); -			} -			break; +		if (hycapi_enable & (1 << card->myid)) { +			hycapi_rx_capipkt(card, buf, len); +		} +		break;  #endif /* CONFIG_HYSDN_CAPI */ -		default: -			printk(KERN_INFO "irq message channel %d len %d unhandled \n", chan, len); -			break; +	default: +		printk(KERN_INFO "irq message channel %d len %d unhandled \n", chan, len); +		break;  	}			/* switch rx channel */ @@ -72,8 +72,8 @@ hysdn_sched_rx(hysdn_card *card, unsigned char *buf, unsigned short len,  /*****************************************************************************/  int  hysdn_sched_tx(hysdn_card *card, unsigned char *buf, -		unsigned short volatile *len, unsigned short volatile *chan, -		unsigned short maxlen) +	       unsigned short volatile *len, unsigned short volatile *chan, +	       unsigned short maxlen)  {  	struct sk_buff *skb; @@ -109,8 +109,8 @@ hysdn_sched_tx(hysdn_card *card, unsigned char *buf,  		return (1);	/* tell that data should be send */  	}			/* error log start and able to send */  	/* now handle network interface packets */ -	if ((hynet_enable & (1 << card->myid)) &&  -	    (skb = hysdn_tx_netget(card)) != NULL)  +	if ((hynet_enable & (1 << card->myid)) && +	    (skb = hysdn_tx_netget(card)) != NULL)  	{  		if (skb->len <= maxlen) {  			/* copy the packet to the buffer */ @@ -123,8 +123,8 @@ hysdn_sched_tx(hysdn_card *card, unsigned char *buf,  			hysdn_tx_netack(card);	/* aknowledge packet -> throw away */  	}			/* send a network packet if available */  #ifdef CONFIG_HYSDN_CAPI -	if( ((hycapi_enable & (1 << card->myid))) &&  -	    ((skb = hycapi_tx_capiget(card)) != NULL) ) +	if (((hycapi_enable & (1 << card->myid))) && +	    ((skb = hycapi_tx_capiget(card)) != NULL))  	{  		if (skb->len <= maxlen) {  			skb_copy_from_linear_data(skb, buf, skb->len);  |