diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-05-20 16:00:29 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-05-21 00:14:08 +0200 | 
| commit | 53677ef18e25c97ac613349087c5cb33ae5a2741 (patch) | |
| tree | f947d34d6efaee2401ea0e4c6104ef2f6a0f7ad0 /drivers/net/sk98lin/skgeinit.c | |
| parent | 727f63334676e760877d43bfb8f0e9331ac8b101 (diff) | |
| download | olio-uboot-2014.01-53677ef18e25c97ac613349087c5cb33ae5a2741.tar.xz olio-uboot-2014.01-53677ef18e25c97ac613349087c5cb33ae5a2741.zip | |
Big white-space cleanup.
This commit gets rid of a huge amount of silly white-space issues.
Especially, all sequences of SPACEs followed by TAB characters get
removed (unless they appear in print statements).
Also remove all embedded "vim:" and "vi:" statements which hide
indentation problems.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'drivers/net/sk98lin/skgeinit.c')
| -rw-r--r-- | drivers/net/sk98lin/skgeinit.c | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/drivers/net/sk98lin/skgeinit.c b/drivers/net/sk98lin/skgeinit.c index a18dc0a48..e49685bb9 100644 --- a/drivers/net/sk98lin/skgeinit.c +++ b/drivers/net/sk98lin/skgeinit.c @@ -585,7 +585,7 @@ int		Mode)		/* Mode may be SK_LED_DIS, SK_LED_ENA, SK_LED_TST */   *	1:	configuration error   */  static int DoCalcAddr( -SK_AC		*pAC, 			/* adapter context */ +SK_AC		*pAC,			/* adapter context */  SK_GEPORT	*pPrt,			/* port index */  int			QuSize,			/* size of the queue to configure in kB */  SK_U32		*StartVal,		/* start value for address calculation */ @@ -1263,9 +1263,8 @@ int		Port)		/* Port Index (MAC_1 + n) */  	pPrt = &pAC->GIni.GP[Port];  	if (pPrt->PRxQSize == SK_MIN_RXQ_SIZE) { -		RxQType = SK_RX_SRAM_Q; 	/* small Rx Queue */ -	} -	else { +		RxQType = SK_RX_SRAM_Q;		/* small Rx Queue */ +	} else {  		RxQType = SK_RX_BRAM_Q;		/* big Rx Queue */  	} @@ -1354,7 +1353,7 @@ int		Port)		/* Port Index (MAC_1 + n) */  	/*  	 * Tx Queue: Release all local resets if the queue is used ! -	 * 		set watermark +	 *		set watermark  	 */  	if (pPrt->PXSQSize != 0) {  		SK_OUT32(IoC, Q_ADDR(pPrt->PXsQOff, Q_CSR), CSR_CLR_RESET); @@ -1416,7 +1415,7 @@ int		QuIoOffs)	/* Queue IO Address Offset */   *	It is possible to stop the receive and transmit path separate or   *	both together.   * - *	Dir =	SK_STOP_TX 	Stops the transmit path only and resets the MAC. + *	Dir =	SK_STOP_TX	Stops the transmit path only and resets the MAC.   *				The receive queue is still active and   *				the pending Rx frames may be still transferred   *				into the RxD. |