diff options
| author | Claudiu Manoil <claudiu.manoil@freescale.com> | 2013-09-30 12:44:44 +0300 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-11-22 17:03:16 -0600 | 
| commit | 18b338fb3486ac91291e1f94561cb47fd0f4aef2 (patch) | |
| tree | 5646ade7c8aec43f1afc507a81560231444280a6 /include/tsec.h | |
| parent | 5be00a0164892eb695fefa41fb24258072ee2185 (diff) | |
| download | olio-uboot-2014.01-18b338fb3486ac91291e1f94561cb47fd0f4aef2.tar.xz olio-uboot-2014.01-18b338fb3486ac91291e1f94561cb47fd0f4aef2.zip | |
net: tsec: Fix CamelCase issues around BD code
Fix bufPtr and the rxIdx/ txIdx occurrences to
solve the related checkpatch warnings for the
coming patches.
Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com>
Diffstat (limited to 'include/tsec.h')
| -rw-r--r-- | include/tsec.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/tsec.h b/include/tsec.h index c30aafbc0..6bc43ef65 100644 --- a/include/tsec.h +++ b/include/tsec.h @@ -202,14 +202,14 @@ typedef struct txbd8  {  	ushort	     status;	     /* Status Fields */  	ushort	     length;	     /* Buffer length */ -	uint	     bufPtr;	     /* Buffer Pointer */ +	uint	     bufptr;	     /* Buffer Pointer */  } txbd8_t;  typedef struct rxbd8  {  	ushort	     status;	     /* Status Fields */  	ushort	     length;	     /* Buffer Length */ -	uint	     bufPtr;	     /* Buffer Pointer */ +	uint	     bufptr;	     /* Buffer Pointer */  } rxbd8_t;  typedef struct rmon_mib |